:root {
  --bg: #08111f;
  --bg-alt: #eef2f6;
  --navy-2: #0d1728;
  --card: #101c2f;
  --card-light: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --line-light: rgba(8, 17, 31, 0.08);
  --text: #f4f7fb;
  --text-dark: #122033;
  --muted: #aab6c7;
  --muted-dark: #5e6d80;
  --accent: #f47b20;
  --accent-dark: #d86612;
  --accent-soft: #2998e3;
  --accent-soft-hover: #1f7ec0;
  --max: 1400px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-dark {
  background: linear-gradient(180deg, #08111f 0%, #0d1728 100%);
}

.section-light {
  background: var(--bg-alt);
  color: var(--text-dark);
}

.section-light .lead,
.section-light .muted,
.section-light p {
  color: var(--muted-dark);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 4.9vw, 5.25rem);
  line-height: 0.98;
  margin-bottom: 0;
    letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 0;
}

.muted {
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 26px rgba(244, 123, 32, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--accent-soft);
  color: #fff;
  box-shadow: 0 8px 26px rgba(41, 152, 227, 0.22);
}

.btn-secondary:hover {
  background: var(--accent-soft-hover);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 29, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 60px 0 68px;
  background: linear-gradient(180deg, #08111f 0%, #0d1728 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  padding-top: 0;
}

.hero h1 {
	max-width: 8.3ch;
  line-height: 0.96;
  letter-spacing: 0.005em;
}

.headline-accent {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92em;
  text-shadow: none;
}

.headline-secondary {
  font-size: 0.88em;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  width: 100%;
}

.logo-hero-box {
  width: 100%;
  max-width: 680px;
  min-height: 320px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.logo-hero-placeholder {
  width: 100%;
  min-height: 250px;
  border-radius: 20px;
  border: 1px dashed rgba(244, 123, 32, 0.45);
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffc08d;
  font-weight: 700;
  background: radial-gradient(circle at center, rgba(244, 123, 32, 0.12), rgba(255, 255, 255, 0.01));
}

.hero-info-stack {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.hero-service-line {
  width: 100%;
  margin: 0;
  text-align: center;
  white-space: normal;
}

.hero-trust-line,
.trust-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin: 0;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d7e0ec;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  margin: 0;
}

.hero-btn-row .btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 320px;
}

/* =========================
   RECENT WORK
========================= */

.recent-work {
  background: #eeeeee;
  color: #07111f;
  padding: 82px 0 92px;
}

.recent-work .container {
  width: min(1400px, calc(100% - 160px));
  margin: 0 auto;
}

.recent-work .eyebrow {
  color: #444;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.recent-work h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #07111f;
  margin: 0 0 18px;
  max-width: 100%;
	white-space: nowrap;
}

.recent-work .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.45;
  color: #5f6670;
  max-width: 980px;
  margin: 0 0 44px;
}

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

.visual-card {
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid rgba(8, 17, 31, 0.06);
  box-shadow: none;
}

.service-img {
  width: 100%;
  height: 220px;   /* 👈 controls how big they look */
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.visual-label {
  background: #e9e9e9;
  color: #555f6d;
  padding: 24px 24px 28px;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.38;
  min-height: 124px;
}

/* =========================
   GENERAL CARDS / OTHER SECTIONS
========================= */

.split-grid,
.service-grid,
.why-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.split-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.service-grid,
.why-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 28px;
  align-items: start;
}

.card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 26px;
}

.section-dark .card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-light .card {
  background: var(--card-light);
  border: 1px solid var(--line-light);
}

.image-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.09), rgba(41, 152, 227, 0.08));
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
  font-weight: 700;
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.cta-band {
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-band-blue {
  background: linear-gradient(135deg, #dfeefe 0%, #edf5ff 46%, #dbe9fb 100%);
  border: 1px solid rgba(41, 152, 227, 0.16);
}

.phone-big {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-top: 8px;
  color: var(--accent);
}

.phone-dark {
  color: #153d67;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
}

.section-dark .contact-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  background: #fff;
  color: var(--text-dark);
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(244, 123, 32, 0.6);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
}

footer {
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: #08111f;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(480px, 0.98fr);
    gap: 28px;
  }

  .trust-line,
  .hero-btn-row {
    flex-wrap: wrap;
  }

  .recent-work .container {
    width: min(1400px, calc(100% - 80px));
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero .eyebrow {
    text-align: center;
  }

  .hero-side {
    margin-top: 0;
    align-items: center;
  }

  .hero-info-stack {
    align-items: center;
    text-align: center;
  }

  .hero-service-line {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.45;
  }

  .hero-trust-line,
  .trust-line,
  .hero-btn-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-btn-row .btn {
    flex: 1 1 260px;
    max-width: 100%;
  }

  .contact-grid,
  .split-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recent-work {
    padding: 68px 0 78px;
  }

  .recent-work .container {
    width: min(1200px, calc(100% - 56px));
  }

  .recent-work h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .visual-grid,
  .split-grid,
  .service-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero .eyebrow {
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 0.98;
  }

  .headline-accent,
  .headline-secondary {
    display: block;
  }

  .hero-side {
    align-items: center;
  }

  .hero-info-stack {
    text-align: center;
    align-items: center;
  }

  .hero-service-line {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.45;
    font-size: 0.9rem;
  }

  .hero-btn-row .btn {
    width: 100%;
    max-width: 100%;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-hero-box {
    min-height: 240px;
  }

  h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .recent-work {
    padding: 56px 0 64px;
  }

  .recent-work .container {
    width: calc(100% - 28px);
  }

  .recent-work .lead {
    margin-bottom: 30px;
  }

  .recent-work h2 {
    white-space: normal;
    max-width: 100%;
  }

  .visual-card {
    border-radius: 22px;
  }

  .service-img {
    aspect-ratio: 4 / 3;
  }

  .visual-label {
    min-height: auto;
    padding: 18px 18px 22px;
    font-size: 1rem;
  }
}

Main fixes:

merged the duplicate 760px media queries
centered the hero text on tablet/mobile
fixed the small service line under the logo
tightened the mobile hero headline
kept Recent Work mobile-friendly

One important note: on mobile I changed this from global to hero-only:

.hero h1

instead of:

h1

That avoids breaking headings in other sections.