:root {
  --gold: #F2F2F2;
  --gold-light: #FFFFFF;
  --brand-rgb: 242, 242, 242;
  --dark: #050505;
  --dark2: #101010;
  --dark3: #1A1A1A;
  --white: #FAFAFA;
  --white-rgb: 250, 250, 250;
  --muted: #B8B8B8;
  --accent: #D6D6D6;
  --surface-rgb: 28, 28, 28;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 18% 16%, rgba(var(--brand-rgb), 0.07), transparent 42%),
    radial-gradient(circle at 82% 10%, rgba(var(--brand-rgb), 0.05), transparent 34%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% -10%, rgba(var(--brand-rgb), 0.08), transparent 48%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--brand-rgb),0.14);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  z-index: 101;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  cursor: pointer;
}
.logo:hover {
  opacity: 0.8;
}
.logo span {
  color: var(--gold);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li.has-dropdown {
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* Dropdown menu */
.has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(var(--brand-rgb), 0.75);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.75);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}
.nav-dropdown {
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  min-width: 320px;
  padding: 10px;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  z-index: 200;
  max-height: min(72vh, 420px);
  overflow-y: auto;
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0s;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(-1px);
}
.has-dropdown:hover::before,
.has-dropdown:focus-within::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  height: 16px;
}
.nav-dropdown li + li {
  margin-top: 2px;
}
.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--muted);
  white-space: nowrap;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--white);
  background: rgba(var(--brand-rgb), 0.12);
  outline: none;
}
.service-card[id],
.industry-pill[id] {
  scroll-margin-top: 110px;
}
.nav-cta {
  display: flex; gap: 12px;
}

/* Mobile Menu */
.hamburger {
  display: none !important;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none !important;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(16, 16, 16, 0.98);
  backdrop-filter: blur(14px);
  width: 100vw;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.14);
  z-index: 99;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex !important;
}
.mobile-nav-links {
  list-style: none;
  margin-bottom: 20px;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.1);
}
.mobile-nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: block;
  padding: 14px 0;
}
.mobile-nav-links a:hover {
  color: var(--gold);
}
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn-outline,
.mobile-nav-cta .btn-solid {
  width: 100%;
  text-align: center;
  padding: 11px 16px;
}

.btn-outline {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 9px 22px; border-radius: 3px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; background: transparent; transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-solid {
  background: var(--gold); color: var(--dark);
  padding: 9px 22px; border-radius: 3px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none;
}
.btn-solid:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(var(--brand-rgb), 0.09), transparent 46%),
    linear-gradient(138deg, #050505 0%, #0e0e0e 48%, #1b1b1b 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
  );
  background-size: 36px 36px;
}
.hero-glow {
  position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(var(--brand-rgb),0.1) 0%, transparent 72%);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  border-left: 2px solid var(--gold); padding-left: 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.1rem; line-height: 1.75;
  color: var(--muted); margin-bottom: 44px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns .btn-solid { padding: 14px 32px; font-size: 0.88rem; }
.hero-btns .btn-outline { padding: 14px 32px; font-size: 0.88rem; }

.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;

  display: flex;
  gap: 20px;
  padding: 16px 24px;

  background: rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 16px;

  border: 1px solid rgba(var(--brand-rgb), 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); display: block;
}
.stat-label {
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-top: 4px;
}
.stat-divider {
  width: 1px; background: rgba(var(--brand-rgb),0.2);
  align-self: stretch;
}

/* ── SECTION SHARED ── */
section { padding: 100px 60px; }

/* Standalone pages use tighter spacing than the one-page layout */
body.standalone-page section {
  min-height: 100vh;
  padding: 108px 60px 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.standalone-page section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--brand-rgb), 0.07), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(var(--brand-rgb), 0.05), transparent 30%);
}

body.standalone-page section > * {
  position: relative;
  z-index: 1;
}

body.standalone-page .how-steps {
  margin-top: 36px;
}

body.standalone-page .testi-header {
  margin-bottom: 40px;
}

body.standalone-page .services-header {
  margin-bottom: 40px;
}

.section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--muted); font-size: 1rem;
  line-height: 1.7; max-width: 540px;
}

/* ── SERVICES ── */
.services {
  background:
    linear-gradient(180deg, #161616 0%, #1a1a1a 100%);
}
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(var(--brand-rgb),0.08);
}
.service-card {
  background: var(--dark2);
  padding: 44px 36px;
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.service-card:hover {
  background: #1f1f1f;
  border-color: rgba(var(--brand-rgb), 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}
.service-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-icon svg[fill="currentColor"] {
  fill: var(--gold);
  stroke: none;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.service-card br { display: none; }
.service-card .btn-outline {
  margin-top: auto;
  align-self: flex-start;
}
.service-arrow {
  margin-top: 24px; color: var(--gold); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
}

/* ── INDUSTRIES ── */
.industries {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--brand-rgb), 0.07), transparent 42%),
    linear-gradient(180deg, #151515 0%, #191919 100%);
}
.industries-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.industries-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.industry-pill {
  background: var(--dark2); border: 1px solid rgba(var(--brand-rgb),0.12);
  border-radius: 4px; padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.industry-pill:hover {
  border-color: var(--gold);
  background: #202020;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}
.industry-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.industry-name { font-size: 0.9rem; font-weight: 500; }

/* ── TESTIMONIALS ── */
.testimonials {
  background:
    linear-gradient(180deg, #141414 0%, #191919 100%);
}
.testi-header { text-align: center; margin-bottom: 64px; }
.testi-header .section-sub { margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--dark2);
  border: 1px solid rgba(var(--brand-rgb),0.1);
  border-radius: 4px; padding: 36px 32px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: var(--gold); opacity: 0.3;
  line-height: 1; margin-bottom: 16px;
}
.testi-text {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--white); margin-bottom: 28px;
  font-style: italic;
}
.testi-author { font-size: 0.85rem; font-weight: 600; }
.testi-role { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 80px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--dark);
  max-width: 600px; line-height: 1.2;
}
.cta-strip-btns { display: flex; gap: 16px; flex-shrink: 0; }
.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 14px 30px; border-radius: 3px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark3); }
.btn-white-outline {
  border: 2px solid var(--dark); color: var(--dark);
  padding: 12px 28px; border-radius: 3px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; background: transparent; text-decoration: none;
  transition: all 0.2s;
}
.btn-white-outline:hover { background: var(--dark); color: var(--white); }

/* ── HOW IT WORKS ── */
.how {
  background:
    linear-gradient(180deg, #161616 0%, #1b1b1b 100%);
}
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(var(--brand-rgb),0.06); margin-top: 60px; }
.step {
  background: var(--dark2); padding: 40px 30px;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.step:hover {
  background: #202020;
  border-color: rgba(var(--brand-rgb), 0.3);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: rgba(var(--white-rgb), 0.18); margin-bottom: 20px; line-height: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

/* ── FOOTER ── */
footer {
  background:
    linear-gradient(180deg, #090909 0%, #060606 100%);
  padding: 70px 60px 30px;
  border-top: 1px solid rgba(var(--brand-rgb),0.1);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-stats > * { animation: fadeUp 0.8s ease both; }
.hero-stats { right: 30px; bottom: 40px; gap: 24px; }

/* Styled pages: stagger in the content cards for a polished first impression */
body.standalone-page .service-card,
body.standalone-page .industry-pill,
body.standalone-page .testi-card,
body.standalone-page .step {
  animation: fadeUp 0.7s ease both;
}
body.standalone-page .service-card:nth-child(1),
body.standalone-page .industry-pill:nth-child(1),
body.standalone-page .testi-card:nth-child(1),
body.standalone-page .step:nth-child(1) { animation-delay: 0.08s; }
body.standalone-page .service-card:nth-child(2),
body.standalone-page .industry-pill:nth-child(2),
body.standalone-page .testi-card:nth-child(2),
body.standalone-page .step:nth-child(2) { animation-delay: 0.14s; }
body.standalone-page .service-card:nth-child(3),
body.standalone-page .industry-pill:nth-child(3),
body.standalone-page .testi-card:nth-child(3),
body.standalone-page .step:nth-child(3) { animation-delay: 0.2s; }
body.standalone-page .service-card:nth-child(4),
body.standalone-page .industry-pill:nth-child(4),
body.standalone-page .step:nth-child(4) { animation-delay: 0.26s; }
body.standalone-page .service-card:nth-child(5),
body.standalone-page .industry-pill:nth-child(5) { animation-delay: 0.32s; }
body.standalone-page .service-card:nth-child(6),
body.standalone-page .industry-pill:nth-child(6) { animation-delay: 0.38s; }
body.standalone-page .service-card:nth-child(7),
body.standalone-page .industry-pill:nth-child(7) { animation-delay: 0.44s; }
body.standalone-page .service-card:nth-child(8),
body.standalone-page .industry-pill:nth-child(8) { animation-delay: 0.5s; }
body.standalone-page .service-card:nth-child(9),
body.standalone-page .industry-pill:nth-child(9) { animation-delay: 0.56s; }
body.standalone-page .industry-pill:nth-child(10) { animation-delay: 0.62s; }
@media (max-width: 1024px) {
  nav { padding: 18px 30px; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .hero { padding: 100px 30px 180px; }
  section { padding: 70px 30px; }
  body.standalone-page section { padding: 96px 30px 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .industries-layout { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-strip { flex-direction: column; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .logo { font-size: 1.2rem; }
  .hero { padding: 80px 20px 140px; flex-flow: column;}
  .hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
  .hero p { font-size: 1rem; margin-bottom: 28px; }
  .hero-btns { gap: 10px; }
  .hero-stats { position: static; margin-top: 40px; justify-content: center; flex-wrap: wrap; gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .stat-divider { display: none; }
  .hero-glow { width: 500px; height: 500px; right: -250px; }
  section { padding: 50px 20px; }
  body.standalone-page section { padding: 80px 20px 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .testi-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-col h4 { margin-bottom: 12px; }
  .cta-strip { padding: 50px 20px; gap: 20px; }
  .cta-strip h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
  .cta-strip-btns { flex-direction: column; width: 100%; }
  .btn-dark, .btn-white-outline { width: 100%; }
  .industries-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 14px 16px; }
  .logo { font-size: 1rem; }
  .mobile-menu { top: 60px; padding: 16px; }
  .hero { padding: 70px 16px 100px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 20px; }
  .hero p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
  .hero-eyebrow { font-size: 0.7rem; margin-bottom: 16px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-solid,
  .hero-btns .btn-outline { width: 100%; padding: 12px 24px; font-size: 0.8rem; }
  .hero-stats { margin-top: 30px; gap: 12px; padding: 12px 16px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.65rem; }
  .hero-glow { display: none; }
  .hero-pattern { display: none; }
  section { padding: 40px 16px; }
  body.standalone-page section { padding: 70px 16px 40px; }
  .section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
  .section-label { font-size: 0.65rem; margin-bottom: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 16px; }
  .service-icon svg { width: 28px; height: 28px; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .service-card p { font-size: 0.85rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 24px 20px; }
  .testi-quote { font-size: 2.5rem; margin-bottom: 12px; }
  .testi-text { font-size: 0.9rem; margin-bottom: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .step { padding: 28px 20px; }
  .step-num { font-size: 2.2rem; margin-bottom: 16px; }
  .step h3 { font-size: 1rem; margin-bottom: 10px; }
  .step p { font-size: 0.85rem; }
  .industries-layout { gap: 40px; }
  .industries-visual { grid-template-columns: 1fr; gap: 12px; }
  .industry-pill { padding: 16px 14px; gap: 10px; }
  .industry-name { font-size: 0.85rem; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand .logo { font-size: 1rem; }
  .footer-brand p { font-size: 0.8rem; }
  .footer-col h4 { font-size: 0.65rem; margin-bottom: 10px; }
  .footer-col a { font-size: 0.8rem; }
  .footer-col li { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-strip { padding: 40px 16px; }
  .cta-strip h2 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
  .cta-strip-btns { width: 100%; }
}
