:root {
  --ink: #111318;
  --muted: #5f6670;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --lime: #79c6ee;
  --blue: #171717;
  --coral: #79c6ee;
  --teal: #444444;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(248, 248, 246, .9), rgba(248, 248, 246, .9)),
    url("assets/website-analytics.jpg") fixed center / cover;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 19, 24, 0.56);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(17, 19, 24, 0.12);
}

body:not(.corporate-home) .site-header {
  position: sticky;
  width: 100%;
  margin: 0;
  padding: 16px max(32px, calc((100vw - var(--container)) / 2));
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
}

body:not(.corporate-home) .page-main {
  padding-top: 0;
}

body:not(.corporate-home) .page-hero {
  width: 100%;
  padding-top: 86px;
  padding-bottom: 72px;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: max(32px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .82) 54%, rgba(255, 255, 255, .58) 100%),
    url("assets/team-strategy.jpg") right center / cover;
}

body:not(.corporate-home) .page-hero .eyebrow {
  color: var(--coral);
}

body:not(.corporate-home) .page-hero h1 {
  max-width: 1120px;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.03;
}

body:not(.corporate-home) .page-hero p {
  max-width: 820px;
  font-size: 18px;
}

body:not(.corporate-home) .section {
  padding: 80px 0;
}

.brand,
.nav,
.footer nav,
.hero-actions,
.contact-points span,
.btn {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 5px;
  background: #02070b;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--lime);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(32px, calc((100vw - var(--container)) / 2)) 42px;
  color: #fff;
}

.page-main {
  padding-top: 110px;
}

.page-hero {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 86px 0 58px;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.split-section img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.stat-grid,
.value-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-tile,
.value-card,
.blog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-tile,
.value-card {
  padding: 28px;
}

.blog-card {
  overflow: hidden;
}

.stat-tile strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.stat-tile span,
.blog-card span {
  color: var(--muted);
  font-weight: 700;
}

.service-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

body:not(.corporate-home) .service-detail,
body:not(.corporate-home) .value-card,
body:not(.corporate-home) .stat-tile,
body:not(.corporate-home) .work-item,
body:not(.corporate-home) .blog-card,
body:not(.corporate-home) details {
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(17, 17, 17, .06);
}

body:not(.corporate-home) .work-item img,
body:not(.corporate-home) .blog-card img,
body:not(.corporate-home) .split-section img {
  filter: grayscale(.18) saturate(.72) contrast(1.04);
}

.service-detail span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail h3,
.service-detail p {
  margin: 0;
}

.service-detail p,
.value-card p,
.blog-card p,
.work-item p {
  color: var(--muted);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.work-item img,
.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.work-item div,
.blog-card div {
  padding: 22px;
}

.cta-band {
  width: min(var(--container), calc(100% - 64px));
  margin: 50px auto 0;
  padding: 46px;
  border-radius: 8px;
  color: #fff;
  background: #111318;
}

.cta-band h2 {
  max-width: 760px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.25), rgba(17, 19, 24, 0.1)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=86") center/cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 85% 32%, rgba(199, 246, 74, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(9, 12, 18, 0.94) 0%, rgba(9, 12, 18, 0.78) 47%, rgba(9, 12, 18, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 850px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn svg,
.contact-points svg,
.service-card svg,
.testimonial svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.btn-primary {
  color: var(--ink);
  background: var(--lime);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-established {
  min-height: 96vh;
}

.hero-panel-wide {
  grid-template-columns: repeat(4, 1fr);
  width: min(920px, 100%);
}

.hero-panel div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel span {
  display: block;
  font-size: 30px;
  font-weight: 800;
}

.hero-panel p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
}

.logo-strip strong {
  color: var(--ink);
}

.trust-strip {
  padding-block: 26px;
}

.section {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-established > div:last-child {
  display: grid;
  gap: 24px;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-proof span {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
}

.mini-proof strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro > p,
.section-heading + p {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-band {
  padding-top: 40px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-grid article {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(18, 24, 40, 0.05);
}

.capability-grid svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef2ff;
}

.capability-grid article:nth-child(2n) svg {
  color: var(--teal);
  background: #e7f7f6;
}

.capability-grid article:nth-child(3n) svg {
  color: var(--coral);
  background: #fff0ec;
}

.capability-grid h3 {
  margin: 24px 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef2ff;
}

.service-card:nth-child(2n) svg {
  color: var(--teal);
  background: #e7f7f6;
}

.service-card:nth-child(3n) svg {
  color: var(--coral);
  background: #fff0ec;
}

.service-card h3,
.timeline h3,
.case-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.timeline p,
.case-card p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.work {
  width: 100%;
  padding-inline: max(32px, calc((100vw - var(--container)) / 2));
  background: #111318;
  color: #fff;
}

.proof-dark {
  margin-top: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #191c24;
}

.case-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.case-card div {
  padding: 28px;
}

.case-card span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card strong {
  display: block;
  padding: 0 28px 28px;
  color: var(--lime);
  font-size: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline-established div {
  padding-right: 28px;
}

.timeline div {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  color: var(--blue);
  font-weight: 800;
}

.industries {
  padding-top: 20px;
}

.industry-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.industry-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 700;
}

.departments {
  padding-top: 36px;
}

.department-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.department-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f8fafc);
  font-weight: 800;
}

.testimonial {
  display: grid;
  gap: 20px;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto 36px;
  padding: 56px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(38, 71, 217, 0.95), rgba(21, 154, 156, 0.92)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.testimonial-grid {
  grid-template-columns: 1fr 280px;
  align-items: center;
}

.testimonial-grid p {
  max-width: 820px;
}

.testimonial-stats {
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.26);
  backdrop-filter: blur(12px);
}

.testimonial-stats strong {
  color: var(--lime);
  font-size: 44px;
  line-height: 1;
}

.testimonial-stats span {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.testimonial p {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

details p {
  padding: 0 24px 22px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  width: min(var(--container), calc(100% - 64px));
  margin: 60px auto 0;
  padding: 70px;
  border-radius: 8px;
  background: var(--soft);
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-points span {
  gap: 12px;
  font-weight: 800;
}

.contact-points svg {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 70px auto 0;
  padding: 42px max(32px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: #101010;
  color: #fff;
}

.footer p {
  margin: 12px 0 0;
  color: #aab3c2;
}

.footer nav {
  gap: 22px;
  font-weight: 800;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer .brand {
  color: #fff;
}

.footer nav a {
  color: #c4cbd6;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav a {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 860px;
    padding-top: 130px;
  }

  .hero-panel,
  .intro,
  .mini-proof,
  .capability-grid,
  .service-grid,
  .case-grid,
  .case-grid-large,
  .timeline,
  .contact,
  .split-section,
  .stat-grid,
  .value-grid,
  .blog-grid,
  .work-gallery,
  .service-detail,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    border-top: 0;
  }

  .timeline div {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .contact {
    padding: 34px 24px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 18px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: 920px;
    padding-inline: 18px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-panel div {
    padding: 18px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .service-card,
  .case-card div {
    padding: 22px;
  }

  .testimonial {
    width: calc(100% - 28px);
    padding: 34px 24px;
  }
}

/* Corporate agency refresh */
.corporate-home {
  --ink: #151515;
  --muted: #5f6670;
  --line: #e5e7eb;
  --soft: #f6f6f4;
  --lime: #79c6ee;
  --blue: #171717;
  --coral: #79c6ee;
  background: #fff;
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px max(32px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: #121212;
  font-size: 13px;
  font-weight: 700;
}

.top-strip div,
.top-strip span,
.top-strip a,
.text-link {
  display: flex;
  align-items: center;
}

.top-strip div {
  gap: 22px;
  flex-wrap: wrap;
}

.top-strip span,
.top-strip a {
  gap: 8px;
}

.top-strip svg {
  width: 15px;
  height: 15px;
  color: #79c6ee;
}

.corporate-header {
  position: sticky;
  width: 100%;
  margin: 0;
  padding: 16px max(32px, calc((100vw - var(--container)) / 2));
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.corporate-header .brand-mark {
  background: #02070b;
}

.corporate-header .header-cta,
.corporate-home .btn-primary {
  color: #02070b;
  background: #79c6ee;
}

.corporate-home .menu-toggle {
  color: #02070b;
  background: #79c6ee;
}

.corporate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(520px, .9fr);
  gap: 72px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 104px max(32px, calc((100vw - var(--container)) / 2)) 96px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .82) 52%, rgba(255, 255, 255, .46) 100%),
    url("assets/website-analytics.jpg") right center / cover;
}

.corporate-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
}

.corporate-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.corporate-hero .eyebrow,
.corporate-section .eyebrow,
.corporate-dark .eyebrow,
.corporate-cta .eyebrow {
  color: #267fac;
  letter-spacing: .04em;
}

.corporate-hero-visual {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
}

.corporate-hero-visual img {
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 8px;
  object-fit: cover;
  filter: grayscale(.18) saturate(.72) contrast(1.04);
}

.btn-outline-dark {
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7dee8;
}

.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust span {
  padding: 9px 12px;
  border: 1px solid #dedede;
  border-radius: 999px;
  color: #343434;
  background: #fafafa;
  font-size: 13px;
  font-weight: 800;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(17, 17, 17, 0.08);
}

.corporate-stats div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.corporate-stats div:last-child {
  border-right: 0;
}

.corporate-stats strong {
  display: block;
  color: #267fac;
  font-size: 28px;
  line-height: 1.1;
}

.corporate-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.corporate-section {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0;
}

.about-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
  width: 100%;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: max(32px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(90deg, rgba(246, 246, 244, .92), rgba(246, 246, 244, .76)),
    url("assets/team-strategy.jpg") center / cover;
}

.about-split h2,
.service-overview h2,
.corporate-dark h2,
.industry-section h2,
.process-clean h2,
.corporate-cta h2 {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.about-split p,
.section-heading p,
.corporate-cta p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  gap: 8px;
  margin-top: 24px;
  color: #267fac;
  font-weight: 900;
}

.text-link svg {
  width: 18px;
}

.about-card-list {
  display: grid;
  gap: 16px;
}

.about-photo-stack {
  display: grid;
  gap: 18px;
}

.about-photo-stack > img {
  width: 100%;
  height: 330px;
  border-radius: 12px;
  object-fit: cover;
  filter: grayscale(.2) saturate(.72) contrast(1.04);
  box-shadow: 0 18px 50px rgba(17, 17, 17, .12);
}

.about-card-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.about-card-list svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 9px;
  color: #fff;
  background: #171717;
}

.about-card-list h3,
.about-card-list p {
  margin: 0;
}

.service-overview {
  width: 100%;
  padding-inline: max(32px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(rgba(246, 246, 244, .86), rgba(246, 246, 244, .86)),
    url("assets/marketing-dashboard.jpg") center / cover;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-overview-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.service-overview-grid span,
.process-grid-clean span {
  color: #267fac;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-overview-grid h3,
.process-grid-clean h3,
.why-grid h3 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
}

.service-overview-grid p,
.process-grid-clean p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.corporate-dark {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
  width: 100%;
  padding: 96px max(32px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .96), rgba(21, 21, 21, .92)),
    url("assets/agency-meeting.jpg") center / cover;
}

.corporate-dark h2,
.corporate-dark .why-grid h3 {
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 18px;
}

.why-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
}

.why-grid strong {
  color: #79c6ee;
}

.real-work {
  padding-top: 88px;
}

.real-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.real-work-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(17, 17, 17, .08);
}

.real-work-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  filter: grayscale(.18) saturate(.72) contrast(1.04);
}

.real-work-grid div {
  padding: 26px;
}

.real-work-grid span {
  color: #267fac;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.real-work-grid h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.clean-tags span {
  color: var(--ink);
  background: #fff;
  border-color: #dedede;
}

.industry-section {
  width: 100%;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: max(32px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(rgba(21, 21, 21, .9), rgba(21, 21, 21, .9)),
    url("assets/agency-meeting.jpg") center / cover;
}

.industry-section .section-heading,
.industry-section .industry-list {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.industry-section h2,
.industry-section .section-heading p {
  color: #fff;
}

.industry-section .clean-tags span {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.process-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (min-width: 1500px) {
  .service-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-overview-grid article {
    min-height: 230px;
  }

  .capability-grid,
  .work-gallery,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-gallery,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .real-work-grid {
    gap: 32px;
  }

  .corporate-hero h1 {
    font-size: 78px;
  }
}

.process-clean {
  width: 100%;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: max(32px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
    url("assets/team-strategy.jpg") center / cover;
}

.process-clean .section-heading,
.process-clean .process-grid-clean {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.process-clean .section-heading {
  margin-bottom: 34px;
}

.process-grid-clean div {
  padding: 26px;
  border-top: 4px solid #79c6ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 17, 17, .08);
}

.corporate-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto 42px;
  padding: 48px;
  border-radius: 12px;
  color: #fff;
  background: #151515;
}

.corporate-cta h2,
.corporate-cta p {
  color: #fff;
}

.corporate-footer {
  width: 100%;
  margin-top: 0;
  color: #d7dde7;
  background: #101010;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1fr 1fr;
  gap: 42px;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 58px 0 42px;
}

.corporate-footer .brand {
  color: #fff;
}

.corporate-footer .brand-mark {
  background: #02070b;
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
  color: #9aa3b2;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-socials a:hover {
  border-color: #79c6ee;
  color: #79c6ee;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.footer-col a,
.footer-col span {
  color: #aab3c2;
  font-weight: 700;
}

.footer-col a:hover {
  color: #79c6ee;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  width: 16px;
  color: #79c6ee;
}

.footer-cta {
  width: max-content;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff !important;
  color: #02070b !important;
  background: #79c6ee;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #838b99;
  font-size: 14px;
}

@media (max-width: 900px) {
  .top-strip,
  .corporate-hero,
  .corporate-stats,
  .about-split,
  .service-overview-grid,
  .corporate-dark,
  .real-work-grid,
  .process-grid-clean,
  .corporate-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .corporate-hero {
    padding-top: 54px;
  }

  .corporate-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .corporate-stats div:last-child {
    border-bottom: 0;
  }

  .corporate-cta {
    display: grid;
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .top-strip {
    display: none;
  }

  .corporate-header {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .corporate-hero {
    width: calc(100% - 28px);
    gap: 34px;
    padding: 38px 0 52px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .9)),
      url("assets/website-analytics.jpg") center / cover;
  }

  .corporate-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .corporate-hero p {
    font-size: 16px;
  }

  .corporate-hero .btn {
    width: 100%;
  }

  .corporate-section {
    width: calc(100% - 28px);
    padding: 64px 0;
  }
}
