:root {
  --bg-dark: #050f15;
  --bg-deep: #031e2f;
  --bg-panel: #05273d;
  --bg-alt: #0a161f;
  --bg-alt-2: #0d1d29;
  --accent: #f68132;
  --accent-hover: #e0702b;
  --text-main: #ffffff;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  --font-display: "Michroma", sans-serif;
  --font-body: "Inter", sans-serif;
  --title-weight: 400;
  --radius-button: 1.125rem;
  --radius-soft: 1.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6,
.brand-title,
.nav-link,
.quote-button,
.mobile-quote,
.hero-button,
.hero-button-secondary,
.about-cta,
.about-ghost,
.contact-submit,
.footer-brand,
.footer-nav button,
.team-title {
  font-family: var(--font-display);
}

button, input, textarea, a { font: inherit; }
button { border: 0; background: transparent; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }

.site-shell { min-height: 100vh; background: var(--bg-dark); }
.main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50; padding: 0.35rem 0 0;
  background: transparent; transition: all 0.5s ease;
}
.main-nav.scrolled { padding: 0.35rem 0 0; }
.nav-inner, .container, .contact-page-inner, .contact-footer, .hero-content, .hero-about-content, .hero-services-content {
  width: min(1440px, calc(100% - 24px)); margin: 0 auto;
}
.contact-page-inner, .contact-footer { width: min(1520px, calc(100% - 24px)); }
.nav-inner {
  display: flex; align-items: center; justify-content: flex-start; min-height: 72px; gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(3, 30, 47, 0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.main-nav.scrolled .nav-inner { background: rgba(3, 30, 47, 0.72); box-shadow: var(--shadow); }
.brand {
  padding: 0;
  flex: 1 1 0;
  display: flex;
  justify-content: flex-start;
}
.brand-mark { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 210px;
  object-fit: contain;
  border-radius: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 0 0 auto;
  justify-content: center;
  margin: 0 auto;
}
.nav-inner > .desktop-only:last-of-type {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-link, .mobile-link {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.3s ease;
}
.nav-link:hover, .mobile-link:hover, .nav-link.active { color: var(--accent); }
.quote-button, .mobile-quote, .hero-button, .contact-submit, .about-cta {
  background: var(--accent); color: #fff; transition: all 0.3s ease;
}
.quote-button {
  padding: 0.85rem 1.75rem; border-radius: var(--radius-button); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 16px 32px rgba(246, 129, 50, 0.2);
}
.quote-button:hover, .mobile-quote:hover, .hero-button:hover, .contact-submit:hover, .about-cta:hover { background: var(--accent-hover); }
.menu-toggle {
  padding: 0.7rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.menu-toggle svg { width: 1.75rem; height: 1.75rem; }
.mobile-menu {
  display: none;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  transform: translateY(100%);
  background: rgba(3, 30, 47, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1rem 1.2rem 1.2rem;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; animation: fadeInDown 0.3s ease-out; }
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-quote {
  margin-top: 1rem; padding: 1rem; border-radius: var(--radius-button); text-align: center; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.desktop-only { display: block; }
.mobile-only { display: none; }
.mobile-only { margin-left: auto; }

.page { animation: fadeIn 0.8s ease-out; }
.hero, .hero-about, .hero-services, .contact-page { position: relative; overflow: hidden; }
.hero { min-height: 100vh; display: flex; align-items: center; }
.hero-media, .section-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::after, .about-media::after, .services-media::after { content: ""; position: absolute; inset: 0; }
.hero-media::after { background: rgba(0, 0, 0, 0.42); }
.about-media::after { background: linear-gradient(90deg, rgba(3,30,47,0.96) 0%, rgba(3,30,47,0.92) 34%, rgba(3,30,47,0.48) 62%, rgba(3,30,47,0.1) 100%); }
.services-media::after { background: linear-gradient(180deg, #031e2f 0%, rgba(3,30,47,0.8) 55%, #050f15 100%); }
.hero-media img, .about-media img, .services-media img { width: 100%; height: 100%; object-fit: cover; }
.slow-zoom { animation: slowZoom 20s infinite alternate linear; }
.hero-content, .hero-about-content, .hero-services-content, .contact-page-inner { position: relative; z-index: 1; }
.hero-content { padding-top: 5rem; }
.hero-copy { max-width: 48rem; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(246,129,50,0.1);
  border: 1px solid rgba(246,129,50,0.2); color: var(--accent); padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 2rem;
}
.hero-title, .section-title, .about-title, .services-title, .contact-phone, .contact-email {
  margin: 0; font-weight: var(--title-weight); letter-spacing: -0.035em;
}
.hero-title { font-size: clamp(2.6rem, 6.8vw, 5.9rem); line-height: 1.05; margin-bottom: 2rem; }
.accent { color: var(--accent); }
.soft { color: #badded6; }
.hero-text, .service-card p, .step-card p, .value-card p, .contact-info p, .footer-note, .about-text {
  color: var(--text-muted); font-weight: 300; line-height: 1.8;
}
.hero-text { max-width: 34rem; font-size: 1.1rem; margin-bottom: 3rem; }
.hero-actions, .about-actions, .contact-socials, .team-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-button, .hero-button-secondary, .about-ghost {
  padding: 1.15rem 2.2rem; border-radius: var(--radius-button); font-size: 1.125rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-button-secondary, .about-ghost {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(12px);
}

.section { position: relative; padding: 7rem 0; overflow: hidden; }
.services-preview, .values-section, .contact-page { background: var(--bg-deep); }
.process-preview { background: var(--bg-alt); }
.team-section { background: var(--bg-dark); }
.load-bait-section { background: var(--bg-deep); }
.contact-form-section { background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.05); }
.skew-bg-left, .skew-bg-right, .skew-bg-process {
  position: absolute; top: 0; height: 100%; z-index: 0;
}
.skew-bg-left { left: 0; width: 25%; background: var(--bg-panel); transform: skewX(12deg) translateX(-5rem); }
.skew-bg-right { right: 0; width: 25%; background: var(--bg-panel); transform: skewX(-12deg) translateX(5rem); }
.skew-bg-process { left: 0; width: 33%; background: var(--bg-alt-2); transform: skewX(12deg) translateX(-5rem); }
.section-inner { position: relative; z-index: 1; }
.section-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--accent); }
.section-kicker {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: #badded6;
}
.section-kicker.muted { color: #cbd5e1; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; }
.services-grid, .team-grid, .values-grid, .services-detail-grid, .contact-grid { display: grid; gap: 2.5rem; }
.services-grid, .services-detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  background: rgba(5,39,61,0.4); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem; border-radius: var(--radius-soft); transition: all 0.5s ease;
}
.service-card.large { background: var(--bg-deep); border-radius: 2rem; display: flex; flex-direction: column; height: 100%; }
.service-card:hover { background: var(--bg-panel); border-color: rgba(246,129,50,0.3); }
.service-icon, .step-icon { color: var(--accent); margin-bottom: 2rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: translateY(-0.5rem); }
.service-card h3, .step-card h3, .team-card h4, .value-card h4 {
  margin: 0 0 1rem; color: #fff; font-weight: var(--title-weight); letter-spacing: -0.03em;
}
.service-card h3 { font-size: 1.5rem; }
.process-layout, .contact-form-grid, .load-bait-grid { display: grid; gap: 4rem; }
.process-layout { grid-template-columns: 1fr 2fr; }
.load-bait-grid { grid-template-columns: 1fr 1.2fr; align-items: center; }
.load-bait-content { }
.load-bait-media { }
.load-bait-placeholder { }
.steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.step-card {
  position: relative; padding: 2rem; border-radius: 1.5rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;
}
.step-card:hover { border-color: rgba(246,129,50,0.3); }
.step-number { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.05); }
.step-card:hover .step-number { color: rgba(246,129,50,0.1); }
.step-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--bg-deep); display: inline-flex;
  align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}
.contact-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
.contact-block { display: flex; gap: 1.5rem; margin-top: 2.5rem; }
.contact-icon-box {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--bg-panel); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease;
}
.contact-block:hover .contact-icon-box { background: var(--accent); color: #fff; }
.contact-block h4 { margin: 0 0 0.25rem; font-size: 1.125rem; }
.contact-form-card {
  background: rgba(5,39,61,0.4); border: 1px solid rgba(255,255,255,0.1); padding: 3.5rem;
  border-radius: 1.75rem; backdrop-filter: blur(20px); box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: 1.5rem; }
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(3,30,47,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem;
  padding: 1rem 1.25rem; color: #fff; outline: none; transition: border-color 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 7rem; resize: none; }
.contact-submit {
  padding: 1.15rem; border-radius: var(--radius-button); font-size: 1.125rem; font-weight: 700; display: inline-flex;
  align-items: center; justify-content: center; gap: 0.75rem; box-shadow: 0 20px 40px rgba(246,129,50,0.2);
}
.hero-about { min-height: 80vh; display: flex; align-items: center; padding: 7rem 0 5rem; }
.hero-services { min-height: 70vh; display: flex; align-items: center; padding: 7rem 0 5rem; }
.about-title { font-size: clamp(2.9rem, 6vw, 5rem); line-height: 0.95; margin-bottom: 2rem; font-weight: var(--title-weight); letter-spacing: -0.03em; }
.about-text {
  max-width: 68rem; font-size: 1.125rem; color: rgba(255,255,255,0.94); margin-bottom: 2.5rem;
}
.about-cta, .about-ghost { padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: var(--radius-button); }
.about-hero-reference {
  min-height: 74vh;
  padding: 6rem 0 4.5rem;
}
.about-hero-reference .hero-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
}
.about-hero-copy {
  max-width: 1120px;
}
.about-hero-reference .about-text {
  max-width: 1100px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.about-hero-reference .soft {
  color: #badded6;
}
.about-hero-reference .about-actions {
  gap: 0.85rem;
}
.about-hero-reference .about-cta,
.about-hero-reference .about-ghost {
  min-width: 140px;
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
}
.about-hero-reference .about-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
}
.about-intro-section {
  padding-top: 5.5rem;
  background: #06263a;
}
.about-intro-section .about-intro-wrap {
  width: 100%;
  max-width: 1380px;
  margin-bottom: 4.75rem;
}
.about-intro-label {
  margin-bottom: 1.75rem;
}
.about-intro-label .section-kicker {
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 1.15rem;
  font-weight: 600;
}
.about-intro-section .about-intro-header {
  width: 100%;
  max-width: 1320px;
  margin-bottom: 1.75rem;
}
.about-intro-section .about-intro-header h2 {
  font-size: clamp(2.3rem, 4.3vw, 3.7rem);
  line-height: 1.03;
  font-weight: var(--title-weight);
  letter-spacing: -0.025em;
}
.about-intro-section .about-intro-text {
  max-width: 980px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
}
.about-intro-section .team-top {
  margin-bottom: 2rem;
}
.about-intro-section .team-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: var(--title-weight);
}
.about-intro-section .team-card h4 {
  font-weight: var(--title-weight);
}
.about-intro-section .team-role {
  color: rgba(186,221,230,0.9);
}
.team-header { max-width: 32rem; margin-bottom: 4rem; }
.team-header h2, .team-title { margin: 0; }
.team-header h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-top: 1rem; font-weight: var(--title-weight); }
.team-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.team-title { font-size: clamp(1.8rem, 3.6vw, 2.35rem); font-weight: var(--title-weight); }
.team-nav button {
  width: 3rem; height: 3rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
}
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%), #102c3f;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.team-card:hover .team-card-image {
  background: linear-gradient(180deg, rgba(246,129,50,0.08) 0%, rgba(255,255,255,0.02) 100%), #102c3f;
  border-color: rgba(246,129,50,0.28);
}
.team-card-placeholder {
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(186,221,230,0.72);
}
.team-role {
  color: #badded6; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4rem; }
.value-number { font-size: 3.75rem; font-weight: 900; color: var(--accent); opacity: 0.2; margin-bottom: 1.5rem; }
.services-title {
  font-size: clamp(2.6rem, 6.2vw, 4.9rem); line-height: 1.05; text-align: center; margin-bottom: 2rem;
}
.services-lead {
  font-size: 1.25rem; color: #cbd5e1; font-weight: 300; line-height: 1.8; text-align: center;
  max-width: 48rem; margin: 0 auto;
}
.contact-page { min-height: 100vh; display: flex; flex-direction: column; padding-top: 10rem; }
.contact-page-inner { padding-bottom: 10rem; flex: 1; }
.contact-page-head { margin: 2.5rem 0 6rem; }
.contact-phone {
  font-size: clamp(2.25rem, 5.2vw, 4.2rem); line-height: 1.1; font-weight: var(--title-weight); margin-bottom: 0.25rem;
}
.contact-email {
  font-size: clamp(1.45rem, 3.7vw, 3.15rem);
  line-height: 1.1;
  font-weight: var(--title-weight);
  overflow-wrap: anywhere;
}
.contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 5rem; }
.contact-grid h3 {
  color: #64748b; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 1.5rem;
}
.contact-grid p, .contact-grid a { color: #fff; font-size: 0.9375rem; font-weight: 300; line-height: 1.8; }
.contact-grid a:hover { color: var(--accent); }
.contact-socials { gap: 1.5rem; }
.watermark {
  position: absolute; left: -2%; right: -2%; bottom: -5%; opacity: 0.03; pointer-events: none;
  user-select: none; overflow: hidden; text-align: center; white-space: nowrap; z-index: 0;
}
.watermark span {
  font-size: 35vw; font-weight: 900; font-style: italic; letter-spacing: -0.05em; text-transform: uppercase;
}
.contact-footer { position: relative; z-index: 1; padding-bottom: 2.5rem; }
.contact-footer p {
  color: #64748b; font-size: 0.8125rem; font-weight: 300; text-transform: none; letter-spacing: 0.16em;
}
.site-footer { background: #02080c; color: #fff; padding: 5rem 0; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 4rem; margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 240px;
  object-fit: contain;
  border-radius: 1rem;
}
.footer-nav {
  display: flex; gap: 2rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 700; color: #94a3b8;
}
.footer-nav button:hover { color: #fff; }
.footer-note {
  color: #475569; font-size: 0.75rem; text-align: center; letter-spacing: 0.16em; font-weight: 500;
}
.footer-note a {
  text-decoration: underline;
}
.scroll-top {
  position: fixed; right: 2rem; bottom: 2rem; z-index: 50; width: 3rem; height: 3rem; border-radius: 1rem;
  background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(5rem); transition: all 0.3s ease;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .services-grid, .services-detail-grid, .team-grid, .values-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-layout, .contact-form-grid, .load-bait-grid { grid-template-columns: 1fr; }
  .process-layout, .contact-form-grid, .load-bait-grid, .steps-grid { gap: 2rem; }
  .contact-page { padding-top: 8.5rem; }
}

@media (max-width: 900px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .skew-bg-left, .skew-bg-right, .skew-bg-process { display: none; }
  .team-top, .footer-top { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 1rem; border-radius: 1.25rem; }
  .brand { flex: 0 1 auto; }
  .brand-logo { height: 46px; max-width: 180px; border-radius: 0.85rem; }
  .footer-logo { height: 50px; max-width: 210px; border-radius: 0.85rem; }
  .hero { min-height: auto; padding: 7.5rem 0 5rem; }
  .hero-content { padding-top: 2.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-actions, .about-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-button, .hero-button-secondary, .about-cta, .about-ghost { width: 100%; }
  .hero-text,
  .services-lead,
  .about-text,
  .about-intro-text {
    font-size: 1rem;
    line-height: 1.75;
  }
  .contact-page-head { margin: 1.5rem 0 3.5rem; }
  .contact-grid { gap: 2rem 1.25rem; }
  .watermark span { font-size: 44vw; }
  .about-hero-reference { min-height: auto; padding: 7.5rem 0 4rem; }
  .about-hero-reference .hero-about-content { min-height: auto; }
  .about-intro-header h2 { font-size: clamp(2.1rem, 7vw, 3.1rem); }
}

@media (max-width: 768px) {
  .services-grid, .services-detail-grid, .team-grid, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .section, .hero-about, .hero-services { padding: 5rem 0; }
  .contact-form-card, .service-card, .step-card { padding: 1.75rem; }
  .contact-block { margin-top: 1.5rem; gap: 1rem; }
  .eyebrow-pill {
    max-width: 100%;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    padding: 0.45rem 0.8rem;
  }
  .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
  }
}

@media (max-width: 680px) {
  .nav-inner, .container, .contact-page-inner, .contact-footer, .hero-content, .hero-about-content, .hero-services-content {
    width: min(100% - 16px, 100%);
  }
  .hero { min-height: auto; padding: 7rem 0 4.5rem; }
  .about-title { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .about-hero-reference .about-text,
  .about-intro-text { font-size: 0.95rem; line-height: 1.8; }
  .about-intro-label .section-kicker { font-size: 1rem; }
}

@media (max-width: 540px) {
  .main-nav,
  .main-nav.scrolled {
    padding-top: 0.25rem;
  }
  .nav-inner, .container, .contact-page-inner, .contact-footer, .hero-content, .hero-about-content, .hero-services-content {
    width: min(100% - 12px, 100%);
  }
  .nav-inner {
    min-height: 64px;
    padding: 0 0.75rem;
    gap: 0.625rem;
    border-radius: 1rem;
  }
  .brand-logo {
    height: 40px;
    max-width: 148px;
    border-radius: 0.75rem;
  }
  .menu-toggle { padding: 0.6rem; }
  .mobile-menu {
    left: 6px;
    right: 6px;
    padding: 0.85rem 0.9rem 1rem;
    border-radius: 0 0 1rem 1rem;
  }
  .mobile-menu button { font-size: 0.9rem; }
  .hero { padding: 6.75rem 0 4rem; }
  .hero-title {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.08;
  }
  .section-title { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  .about-title { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .services-title { font-size: clamp(2.15rem, 9.5vw, 3rem); }
  .hero-text,
  .services-lead,
  .about-hero-reference .about-text,
  .about-intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .service-card h3,
  .step-card h3,
  .team-card h4,
  .value-card h4 {
    font-size: 1.15rem;
    line-height: 1.3;
  }
  .contact-page { padding-top: 7rem; }
  .contact-phone { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  .contact-email { font-size: clamp(1rem, 5.4vw, 1.5rem); }
  .contact-grid h3 { margin-bottom: 0.8rem; }
  .footer-logo {
    height: 44px;
    max-width: 180px;
  }
  .footer-nav {
    gap: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  .footer-note,
  .contact-footer p { letter-spacing: 0.08em; }
  .team-card-placeholder {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .watermark span { font-size: 52vw; }
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}
