:root {
  --bg: #eef7ec;
  --bg-alt: #dff2e8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-alt: #eef8f5;
  --surface-strong: #d8efe8;
  --text: #103d36;
  --muted: #4f6f6a;
  --text-rgb: 16, 61, 54;
  --accent: #a7de46;
  --accent-deep: #4cbf7f;
  --accent-rgb: 167, 222, 70;
  --teal-rgb: 76, 191, 127;
  --glow-rgb: 71, 214, 201;
  --line: rgba(16, 61, 54, 0.11);
  --line-strong: rgba(16, 61, 54, 0.18);
  --shadow: 0 12px 35px rgba(7, 38, 34, 0.08);
  --shadow-strong: 0 24px 54px rgba(7, 38, 34, 0.12);
  --radius: 18px;
  --container: 1200px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(var(--glow-rgb), 0.1), transparent 42%),
    linear-gradient(180deg, #f5fbef 0%, #dff1ec 100%);
  position: relative;
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--accent-rgb), 0.2), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(var(--glow-rgb), 0.18), transparent 24%),
    radial-gradient(circle at 66% 72%, rgba(var(--teal-rgb), 0.14), transparent 28%);
  opacity: 0.9;
  transform: translate3d(0, 0, 0) scale(1.02);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8fcb30 0%, #63d280 45%, #55d8cf 100%);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(var(--teal-rgb), 0.28);
  pointer-events: none;
}

.has-motion body::after,
body.has-motion::after {
  animation: ambient-glow 24s ease-in-out infinite alternate;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.18;
}

:focus-visible {
  outline: 3px solid rgba(var(--glow-rgb), 0.38);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 253, 249, 0.97), rgba(240, 250, 246, 0.93));
  backdrop-filter: blur(18px);
  box-shadow:
    0 10px 24px rgba(7, 38, 34, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(248, 254, 251, 0.985), rgba(238, 249, 245, 0.96));
  box-shadow:
    0 16px 34px rgba(7, 38, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(var(--text-rgb), 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  padding: 0.18rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.16), rgba(var(--glow-rgb), 0.18));
  box-shadow:
    0 14px 28px rgba(var(--teal-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  flex: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(6, 31, 28, 0.16));
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 18px 34px rgba(var(--teal-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.brand-copy {
  display: grid;
  gap: 0.18rem;
}

.brand-copy strong {
  font-size: 1.02rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 999px;
  background: rgba(250, 255, 252, 0.72);
  box-shadow:
    0 10px 24px rgba(7, 38, 34, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.site-nav a,
.footer-links a,
.footer-bottom a {
  color: var(--muted);
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 0.1rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.35rem;
  width: auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(var(--teal-rgb), 0.24) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  inset: 0.1rem -0.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.14), rgba(var(--teal-rgb), 0.06));
  z-index: -1;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.7rem;
  height: 2px;
  margin: 0.3rem 0;
  background: var(--text);
}

.hero-section,
.page-hero,
.section {
  padding-block: 68px;
  scroll-margin-top: 24px;
}

.section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.hero-section {
  padding-top: 28px;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(var(--glow-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(236, 247, 242, 0.92)),
    linear-gradient(180deg, #f5fbef 0%, #dff1ec 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero,
.section-alt {
  background:
    linear-gradient(180deg, rgba(224, 242, 232, 0.92), rgba(241, 250, 246, 0.98));
}

.page-hero {
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(var(--glow-rgb), 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 248, 244, 0.96)),
    linear-gradient(180deg, rgba(224, 242, 232, 0.92), rgba(241, 250, 246, 0.98));
  padding-top: 32px;
  border-bottom: 1px solid var(--line);
}

.section + .section {
  border-top: 1px solid var(--line);
}

#about.section {
  padding-top: 34px;
  padding-bottom: 36px;
}

.eyebrow,
.service-kicker,
.preview-tag,
.info-label,
.proof-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 44px;
  align-items: center;
}

.page-hero-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.project-hero {
  padding-top: 40px;
  padding-bottom: 44px;
}

.project-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 38px;
  align-items: center;
}

.project-hero .page-title {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.7vw, 4.1rem);
}

.project-hero .page-copy {
  max-width: 36rem;
}

.hero-copy,
.copy-stack {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.hero-copy {
  position: relative;
}

.page-hero-grid > :first-child {
  display: grid;
  align-content: center;
  gap: 1rem;
  max-width: 40rem;
}

.hero-copy h1,
.page-title,
.split-layout h2,
.section-heading h2,
.cta-panel h2 {
  max-width: 650px;
}

.page-title {
  max-width: 11.2ch;
  font-size: clamp(2.8rem, 4.7vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
}

.hero-text,
.page-copy,
.section-copy,
.copy-stack p,
.footer-copy,
.cta-copy p,
.image-card-body p,
.service-card p,
.benefit-card p,
.client-card p,
.timeline-card p,
.preview-card p {
  max-width: 620px;
}

.page-copy {
  max-width: 38rem;
  font-size: 1.06rem;
  line-height: 1.74;
}

.page-hero .eyebrow {
  margin-bottom: 0.15rem;
}

.page-hero-grid .page-title + .page-copy {
  padding-top: 0.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 35, 63, 0.08);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.34) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.hero-metrics,
.proof-grid,
.service-grid,
.benefit-grid,
.preview-grid,
.project-grid,
.project-highlights,
.client-grid,
.timeline-grid,
.gallery-grid,
.footer-grid,
.footer-links,
.contact-list {
  display: grid;
  gap: 24px;
}

.hero-metrics,
.proof-grid,
.service-grid,
.project-grid,
.project-highlights,
.preview-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid,
.client-grid,
.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.proof-card,
.info-card,
.service-card,
.benefit-card,
.preview-card,
.image-card,
.client-card,
.timeline-card,
.gallery-item,
.cta-panel {
  height: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
}

.metric-card,
.proof-card,
.info-card,
.service-card,
.benefit-card,
.preview-card,
.client-card,
.timeline-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 28px;
}

.metric-card strong,
.proof-card strong,
.timeline-card strong {
  font-family: "Barlow", sans-serif;
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1.1;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric-card,
.proof-card {
  min-height: 100%;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 0;
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  align-items: start;
}

.metric-card {
  min-height: 0;
  gap: 0.2rem;
  padding: 0 1.35rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.metric-card:first-child {
  padding-left: 0;
}

.metric-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-image-card,
.page-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 220ms ease;
}

.hero-image-card img,
.page-hero-image img {
  width: 100%;
  object-fit: cover;
}

.hero-image-card img {
  aspect-ratio: 1.34 / 1;
}

.page-hero-image img {
  aspect-ratio: 1.16 / 1;
}

.hero-image-card img,
.page-hero-image img,
.image-card img,
.gallery-item img {
  transition:
    transform 400ms ease,
    filter 300ms ease;
}

.hero-image-card::after,
.page-hero-image::after,
.hero-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.24), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.hero-image-card:hover img,
.page-hero-image:hover img,
.image-card:hover img,
.gallery-item:hover img {
  transform: scale(1.025);
}

.hero-image-card.is-tilting,
.page-hero-image.is-tilting,
.hero-overlay-card.is-tilting {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(-2px);
  box-shadow: 0 30px 60px rgba(16, 35, 63, 0.12);
}

.hero-image-card.is-tilting::after,
.page-hero-image.is-tilting::after,
.hero-overlay-card.is-tilting::after {
  opacity: 1;
}

.hero-overlay-card {
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  position: relative;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 220ms ease;
}

.hero-service-panel,
.hero-service-copy {
  display: grid;
  gap: 12px;
}

.hero-service-copy h3 {
  max-width: 22ch;
  font-size: 1.12rem;
  line-height: 1.24;
}

.overlay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.overlay-grid span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.overlay-grid span:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.06);
}

.proof-section {
  padding-top: 28px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(230, 245, 236, 0.94), rgba(244, 251, 247, 0.98));
}

.proof-card strong {
  font-size: 1.18rem;
  line-height: 1.28;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px 38px;
  align-items: start;
  margin-bottom: 22px;
}

.section-heading.section-intro {
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 16px 28px;
  align-items: start;
  margin-bottom: 22px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading .section-copy {
  padding-top: 0.35rem;
}

.section-heading.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-heading.section-intro h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.35rem, 3.25vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.section-heading.section-intro .section-intro-content {
  display: grid;
  gap: 16px;
  max-width: 100%;
  align-content: start;
  padding: 18px 20px 20px;
  border: 1px solid rgba(23, 43, 77, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 252, 0.94));
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

.section-heading.section-intro .section-intro-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
}

.section-heading.section-intro .section-copy {
  max-width: 100%;
  padding-top: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.why-choose-intro {
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.5fr);
  gap: 18px 24px;
  align-items: start;
}

.why-choose-intro h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.35rem, 3.55vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  text-wrap: normal;
}

.why-choose-intro .section-intro-content {
  gap: 18px;
}

.why-choose-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
}

.why-choose-intro .section-copy {
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.75;
  text-wrap: balance;
}

.why-choose-intro .section-tags {
  gap: 12px;
}

.why-choose-intro .section-tags span {
  min-height: 36px;
  padding: 0.48rem 0.82rem;
  font-size: 0.78rem;
}

.about-intro {
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, 0.6fr);
  gap: 24px 40px;
  align-items: start;
}

.about-story {
  display: grid;
  gap: 20px;
}

.about-intro h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.35rem, 3.35vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.about-visual-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(23, 43, 77, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 242, 249, 0.98));
  box-shadow: 0 22px 54px rgba(16, 35, 63, 0.1);
  isolation: isolate;
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.about-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 49, 0.08), rgba(10, 24, 49, 0.3)),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 72%);
  z-index: 1;
}

.about-visual-glow {
  position: absolute;
  inset: auto auto -42px -28px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.34), rgba(var(--accent-rgb), 0));
  z-index: 1;
  filter: blur(8px);
}

.about-visual-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  max-width: 230px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(9, 46, 40, 0.74);
  box-shadow: 0 18px 30px rgba(7, 30, 27, 0.22);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.96);
  animation: aboutBadgeFloat 7s ease-in-out infinite;
}

.about-visual-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-visual-badge strong {
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.badge-primary {
  top: 24px;
  left: 24px;
}

.badge-secondary {
  right: 22px;
  bottom: 24px;
  animation-delay: -2.4s;
}

.badge-tertiary {
  left: 32px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(23, 43, 77, 0.08);
  color: var(--text);
  animation-delay: -4.2s;
}

.badge-tertiary span {
  color: var(--accent);
}

.about-panel {
  max-width: 100%;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(23, 43, 77, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 252, 0.94));
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
}

.about-panel p {
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-panel .info-card {
  margin-top: 2px;
}

.section-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.section-tags span:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(23, 43, 77, 0.16);
}

@keyframes aboutBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes ambient-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
    opacity: 0.82;
    filter: saturate(1);
  }

  50% {
    transform: translate3d(0.4%, -0.5%, 0) scale(1.045);
    opacity: 0.96;
    filter: saturate(1.04);
  }

  100% {
    transform: translate3d(-0.45%, 0.35%, 0) scale(1.03);
    opacity: 0.86;
    filter: saturate(1.01);
  }
}

.service-card,
.benefit-card,
.client-card,
.timeline-card,
.preview-card,
.image-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.benefit-card:hover,
.client-card:hover,
.timeline-card:hover,
.preview-card:hover,
.image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 35, 63, 0.09);
}

.service-card::before,
.benefit-card::before,
.client-card::before,
.timeline-card::before,
.preview-card::before,
.image-card::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.96), rgba(var(--accent-rgb), 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::before,
.benefit-card:hover::before,
.client-card:hover::before,
.timeline-card:hover::before,
.preview-card:hover::before,
.image-card:hover::before,
.proof-card:hover::before {
  opacity: 1;
}

.service-card,
.benefit-card,
.client-card,
.timeline-card,
.preview-card,
.image-card,
.proof-card,
.metric-card,
.service-sidebar,
.cta-panel,
.hero-overlay-card {
  will-change: transform;
}

.service-link {
  text-decoration: none;
}

.service-link {
  position: relative;
  gap: 1rem;
  overflow: hidden;
}

.service-link::after {
  content: "->";
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(23, 43, 77, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  opacity: 0.86;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.service-link:hover::after,
.service-link:focus-visible::after {
  transform: translateX(3px);
  opacity: 1;
  background: #fff;
  border-color: rgba(23, 43, 77, 0.22);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-right: 3rem;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-cta::after {
  content: "View more";
  color: rgba(23, 43, 77, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: start;
}

.service-detail-copy,
.service-sidebar,
.service-points,
.service-facts {
  display: grid;
  gap: 18px;
}

.service-detail-copy {
  gap: 1rem;
}

.service-detail-copy h2 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-detail-copy p {
  max-width: 42rem;
}

.service-detail-copy h2,
.service-detail-copy p,
.service-sidebar p {
  max-width: 100%;
}

.service-sidebar {
  padding: 24px 24px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 252, 0.96));
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.06);
  position: relative;
}

.service-sidebar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
}

.service-point-list,
.service-fact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-point-list li,
.service-fact-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-point-list li::before,
.service-fact-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

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

.service-gallery-section .section-heading {
  margin-bottom: 20px;
}

.service-gallery .image-card img {
  aspect-ratio: 6 / 5;
}

.service-application-grid,
.service-offering-grid {
  display: grid;
  gap: 20px;
}

.service-application-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-application-card,
.service-offering-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 251, 0.96));
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-application-card {
  position: relative;
  overflow: hidden;
}

.service-application-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(var(--accent-rgb), 0.18));
}

.service-application-card:hover,
.service-offering-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 43, 77, 0.18);
  box-shadow: 0 18px 34px rgba(16, 35, 63, 0.1);
}

.service-application-card h3,
.service-offering-card h3,
.service-commitment-panel h3 {
  margin-bottom: 0.7rem;
}

.service-application-card p,
.service-offering-card p,
.service-commitment-panel p {
  max-width: 100%;
}

.service-application-card p {
  font-size: 0.98rem;
}

.service-offering-card {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.service-offering-card .service-point-list {
  gap: 10px;
}

.service-commitment-panel {
  position: relative;
  overflow: hidden;
  padding: 30px 36px 32px;
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.06), transparent 22%),
    linear-gradient(135deg, #18385f 0%, #1d436f 48%, #173757 100%);
  box-shadow: 0 18px 38px rgba(16, 35, 63, 0.12);
  color: rgba(255, 255, 255, 0.96);
}

.service-commitment-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 179, 95, 0.35), rgba(255, 255, 255, 0.04));
}

.service-commitment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 58%);
  pointer-events: none;
}

.service-commitment-panel > * {
  position: relative;
  z-index: 1;
}

.service-commitment-panel .eyebrow {
  color: #ffb35f;
  margin-bottom: 0.85rem;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
}

.service-commitment-panel h2 {
  max-width: none;
  margin-bottom: 0.95rem;
  font-size: clamp(1.9rem, 2.85vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-commitment-panel h2,
.service-commitment-panel h3,
.service-commitment-panel p,
.service-commitment-panel li {
  color: rgba(255, 255, 255, 0.96);
}

.service-commitment-panel p {
  max-width: 58ch;
  font-size: 0.985rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
}

.service-commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
  gap: 30px;
  align-items: center;
}

.service-commitment-grid > div:first-child {
  padding-right: 10px;
}

.service-commitment-points {
  display: grid;
  gap: 10px;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 62ch;
}

.service-commitment-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.955rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

.service-commitment-points li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ffb35f;
}

.service-commitment-highlight {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.service-commitment-panel:hover .service-commitment-highlight {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-commitment-highlight strong {
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0.1rem 0 0;
}

.service-commitment-highlight span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.service-commitment-highlight p {
  max-width: 24ch;
  font-size: 0.95rem;
  line-height: 1.62;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.image-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 24px;
}

.project-showcase {
  padding-top: 72px;
}

.project-showcase-intro {
  display: grid;
  margin-bottom: 16px;
}

.section-intro {
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 18px 36px;
  align-items: start;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.project-showcase-intro h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.3rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.section-intro-content {
  display: grid;
  gap: 14px;
  max-width: 430px;
  align-content: start;
}

.project-showcase-intro .section-copy {
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.75;
}

.project-showcase-intro .section-intro-content,
.section-intro > .section-intro-content {
  max-width: 100%;
  gap: 16px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(23, 43, 77, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 252, 0.94));
  box-shadow: 0 16px 34px rgba(16, 35, 63, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
}

.project-showcase-intro .section-intro-content::before,
.section-intro > .section-intro-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
}

.sector-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.48rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.project-showcase .project-highlights {
  gap: 20px;
  align-items: stretch;
  margin-top: 12px;
}

.project-showcase .image-card {
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  height: 100%;
}

.project-showcase .image-card img {
  aspect-ratio: 1 / 0.72;
}

.project-showcase .image-card-body {
  gap: 0.58rem;
  padding: 18px 22px 22px;
}

.project-showcase .image-card-body h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.project-showcase .image-card-body p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.project-card-tag {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card-meta {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.project-card-link {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  transform-origin: center;
}

.project-card-link:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 38px rgba(16, 35, 63, 0.1);
}

.project-grid-section {
  padding-top: 56px;
}

.project-grid-section .project-grid {
  align-items: start;
}

.project-grid-section .project-grid,
.client-grid,
.gallery-grid {
  margin-top: 8px;
}

.timeline-card strong {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-size: 1.6rem;
}

.gallery-item {
  overflow: hidden;
  padding: 0;
}

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

.gallery-item figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.15rem 1.2rem;
  color: var(--muted);
}

.gallery-item figcaption strong {
  color: var(--text);
  font-family: "Barlow", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.gallery-item figcaption span {
  font-size: 0.94rem;
  line-height: 1.55;
}

.has-motion .reveal-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion .reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-ready .hero-copy > *,
.page-ready .page-hero-grid > :first-child > *,
.page-ready .hero-visual > *,
.page-ready .proof-card,
.page-ready .site-footer {
  animation: rise-in 760ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-ready .hero-copy > *:nth-child(1),
.page-ready .page-hero-grid > :first-child > *:nth-child(1) {
  animation-delay: 60ms;
}

.page-ready .hero-copy > *:nth-child(2),
.page-ready .page-hero-grid > :first-child > *:nth-child(2) {
  animation-delay: 140ms;
}

.page-ready .hero-copy > *:nth-child(3),
.page-ready .page-hero-grid > :first-child > *:nth-child(3) {
  animation-delay: 220ms;
}

.page-ready .hero-copy > *:nth-child(4),
.page-ready .page-hero-grid > :first-child > *:nth-child(4) {
  animation-delay: 300ms;
}

.page-ready .hero-visual > *:nth-child(1) {
  animation-delay: 180ms;
}

.page-ready .hero-visual > *:nth-child(2) {
  animation-delay: 280ms;
}

.page-ready .proof-card:nth-child(1) {
  animation-delay: 180ms;
}

.page-ready .proof-card:nth-child(2) {
  animation-delay: 260ms;
}

.page-ready .proof-card:nth-child(3) {
  animation-delay: 340ms;
}

.hero-image-card,
.page-hero-image {
  animation: float-card 7.2s ease-in-out infinite;
}

.hero-overlay-card {
  animation: float-card 8.6s ease-in-out infinite reverse;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.09), transparent 70%);
  pointer-events: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 32px;
  padding: 36px;
}

.cta-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.cta-actions {
  justify-self: end;
  align-items: flex-start;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(8, 20, 38, 0.22);
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08), transparent 24%),
    linear-gradient(180deg, #183354 0%, #142b48 46%, #10233d 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.75) 52%, rgba(var(--accent-rgb), 0.08) 100%);
}

.site-footer .eyebrow {
  margin-bottom: 0.2rem;
  color: #ffb35f;
}

.site-footer h2 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.98);
}

.site-footer h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 28px 44px;
  align-items: start;
  padding: 40px 0 22px;
}

.footer-grid > div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-grid > div:first-child {
  padding-right: 12px;
}

.footer-brand-block,
.footer-links-block {
  min-width: 0;
}

.footer-brand-block {
  max-width: 36rem;
}

.footer-links-block {
  justify-self: end;
  width: min(100%, 320px);
}

.footer-contact-panel,
.footer-services-block,
.footer-cta-strip {
  grid-column: 1 / -1;
}

.footer-copy {
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(225, 234, 246, 0.84);
}

.footer-contact-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact-card {
  position: relative;
  display: grid;
  gap: 0.3rem;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 3px 0 0 rgba(var(--accent-rgb), 0.9);
}

.footer-contact-card span {
  color: #ffb35f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-card p,
.footer-contact-card a {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(239, 244, 251, 0.9);
}

.footer-contact-card a {
  width: fit-content;
}

.footer-links,
.contact-list,
.footer-service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links-block h3 {
  margin-bottom: 0.15rem;
}

.footer-links a,
.contact-list li,
.contact-list a,
.footer-service-list li,
.footer-service-list a {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(225, 234, 246, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-service-list a:hover,
.footer-service-list a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
  color: rgba(255, 255, 255, 0.98);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.15rem 0;
}

.footer-links a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  margin-left: 0;
  background: currentColor;
  transition:
    width 180ms ease,
    margin-left 180ms ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  width: 14px;
  margin-left: 0.45rem;
}

.contact-list {
  gap: 16px;
}

.contact-list li {
  position: relative;
  padding-left: 1.15rem;
}

.contact-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.08);
}

.footer-services-block {
  gap: 12px;
  padding: 16px 18px 18px;
  border-top: 2px solid rgba(var(--accent-rgb), 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-services-block h3 {
  color: #ffb35f;
}

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

.footer-service-list li {
  position: relative;
  padding-left: 0.9rem;
}

.footer-service-list a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.94) 0%, rgba(var(--teal-rgb), 0.96) 100%);
  color: #fff;
}

.footer-cta-strip h3 {
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.footer-cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-cta-actions .button {
  min-width: 148px;
  min-height: 46px;
  padding-inline: 1.1rem;
}

.footer-cta-actions .button-primary {
  background: rgba(17, 37, 64, 0.95);
  border-color: rgba(17, 37, 64, 0.95);
  box-shadow: none;
}

.footer-cta-actions .button-primary:hover,
.footer-cta-actions .button-primary:focus-visible {
  background: rgba(11, 28, 51, 0.98);
  border-color: rgba(11, 28, 51, 0.98);
}

.footer-cta-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer-cta-actions .button-secondary:hover,
.footer-cta-actions .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.88rem;
  color: rgba(225, 234, 246, 0.74);
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.footer-bottom a::before {
  content: "↑";
  color: var(--accent);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .service-detail-layout,
  .section-heading,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-section,
  .page-hero,
  .section,
  .proof-section {
    padding-block: 56px;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  #about.section {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .hero-section {
    padding-top: 28px;
  }

  .page-hero {
    padding-top: 32px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 32px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-card {
    padding: 0;
    border-right: 0;
  }

  .project-hero {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .project-hero .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-hero .page-title,
  .page-title {
    max-width: 100%;
  }

  .project-hero .page-copy {
    max-width: 100%;
  }

  .project-showcase {
    padding-top: 44px;
  }

  .project-showcase-intro {
    margin-bottom: 24px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading.section-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-choose-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-intro .eyebrow {
    grid-column: auto;
  }

  .section-heading.section-intro .eyebrow {
    grid-column: auto;
  }

  .footer-grid > div:first-child {
    padding-right: 0;
  }

  .site-footer h2,
  .footer-copy {
    max-width: 100%;
  }

  .footer-contact-panel,
  .footer-service-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

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

  .project-showcase-intro h2,
  .project-showcase-intro .section-copy,
  .section-intro-content,
  .section-heading.section-intro .section-intro-content {
    max-width: 100%;
  }

  .why-choose-intro h2,
  .why-choose-intro .section-intro-content {
    max-width: 100%;
  }

  .about-intro h2,
  .about-panel {
    max-width: 100%;
  }

  .about-story {
    gap: 18px;
  }

  .why-choose-intro .section-intro-content {
    padding: 20px;
  }

  .about-panel {
    margin-top: 0;
    padding: 20px;
  }

  .about-visual-card {
    min-height: 280px;
  }

  .project-showcase .project-highlights {
    margin-top: 8px;
  }

  .project-showcase .image-card img {
    aspect-ratio: 1 / 0.82;
  }

  .project-grid-section {
    padding-top: 34px;
  }

  .hero-metrics,
  .proof-grid,
  .service-grid,
  .project-grid,
  .project-highlights,
  .preview-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .service-offering-grid,
  .service-commitment-grid {
    grid-template-columns: 1fr;
  }

  .service-commitment-grid {
    gap: 20px;
    align-items: start;
  }

  .service-commitment-highlight {
    max-width: 420px;
  }

  .hero-image-card,
  .page-hero-image,
  .hero-overlay-card {
    animation-duration: 6s;
  }

  .cta-actions {
    justify-self: start;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav a {
    min-height: auto;
    padding: 0;
  }

  .site-nav a::after {
    left: 0;
    right: auto;
    bottom: -0.15rem;
    width: 100%;
  }

  .site-nav a[aria-current="page"]::before {
    inset: -0.35rem -0.55rem;
    border-radius: 0.9rem;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-inner {
    min-height: 68px;
    gap: 0.85rem;
  }

  .brand {
    align-items: center;
    gap: 0.65rem;
    max-width: calc(100% - 58px);
  }

  .brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.12rem;
    border-radius: 0.75rem;
  }

  .brand-copy {
    gap: 0.08rem;
  }

  .brand-copy strong {
    font-size: 0.8rem;
    line-height: 1.08;
  }

  .brand-copy span {
    max-width: 18ch;
    font-size: 0.67rem;
    line-height: 1.08;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .hero-section,
  .page-hero,
  .section,
  .proof-section {
    padding-block: 42px;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #about.section {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .hero-section {
    padding-top: 22px;
  }

  .hero-copy {
    gap: 0.95rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 0.1rem;
  }

  .page-hero {
    padding-top: 24px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .service-detail-layout,
  .section-heading,
  .cta-panel,
  .footer-grid {
    gap: 22px;
  }

  .project-hero {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .project-hero .page-hero-grid {
    gap: 22px;
  }

  .project-hero .page-title,
  .page-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.15rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .project-hero .page-copy,
  .page-copy {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .page-hero-grid > :first-child {
    gap: 0.8rem;
  }

  .page-hero-image {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    border-radius: 22px;
  }

  .page-hero-image img {
    aspect-ratio: 1.18 / 1;
  }

  .project-showcase {
    padding-top: 36px;
  }

  .project-showcase-intro {
    margin-bottom: 20px;
  }

  .project-showcase-intro h2 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    max-width: 100%;
  }

  .why-choose-intro h2 {
    font-size: clamp(2.05rem, 7.8vw, 2.7rem);
    max-width: 100%;
  }

  .about-intro h2 {
    font-size: clamp(2.05rem, 7.8vw, 2.7rem);
    max-width: 100%;
  }

  .about-story {
    gap: 16px;
  }

  .why-choose-intro .section-intro-content {
    padding: 18px;
    border-radius: 16px;
  }

  .footer-services-block,
  .footer-cta-strip,
  .footer-contact-card {
    padding: 16px;
  }

  .footer-links-block {
    width: 100%;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .about-panel {
    margin-top: 0;
    padding: 18px;
    border-radius: 16px;
  }

  .about-visual-card {
    min-height: 240px;
    border-radius: 22px;
  }

  .about-visual-badge {
    max-width: 180px;
    padding: 0.8rem 0.85rem;
  }

  .about-visual-badge strong {
    font-size: 0.92rem;
  }

  .badge-primary {
    top: 16px;
    left: 16px;
  }

  .badge-secondary {
    right: 14px;
    bottom: 16px;
  }

  .badge-tertiary {
    left: 16px;
    bottom: 16px;
  }

  .project-showcase .project-highlights {
    margin-top: 0;
  }

  .project-showcase .image-card img {
    aspect-ratio: 4 / 3;
  }

  .project-grid-section {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  h3 {
    font-size: 1.24rem;
  }

  p {
    font-size: 0.98rem;
  }

  .hero-metrics,
  .proof-grid,
  .service-grid,
  .benefit-grid,
  .preview-grid,
  .project-grid,
  .project-highlights,
  .client-grid,
  .timeline-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-application-grid,
  .service-offering-grid {
    grid-template-columns: 1fr;
  }

  .service-application-card,
  .service-offering-card,
  .service-commitment-panel {
    padding: 20px;
  }

  .service-commitment-panel h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .service-commitment-grid > div:first-child {
    padding-right: 0;
  }

  .service-commitment-panel .eyebrow {
    margin-bottom: 0.7rem;
  }

  .service-commitment-panel p,
  .service-commitment-points,
  .service-commitment-highlight p {
    max-width: 100%;
  }

  .service-commitment-highlight {
    padding: 18px;
    max-width: 100%;
  }

  .hero-image-card,
  .page-hero-image,
  .hero-overlay-card {
    animation: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .metric-card {
    padding: 0;
  }

  .cta-panel,
  .metric-card,
  .proof-card,
  .info-card,
  .service-card,
  .benefit-card,
  .preview-card,
  .client-card,
  .timeline-card {
    padding: 22px;
  }

  .image-card-body {
    padding: 22px;
  }

  .metric-card strong {
    font-size: 1.8rem;
  }

  .metric-card span {
    font-size: 0.88rem;
  }

  .section-tags span {
    min-height: 32px;
    padding: 0.42rem 0.68rem;
    white-space: normal;
  }

  .page-hero-grid > :first-child,
  .page-copy,
  .section-intro-content,
  .project-showcase-intro .section-copy {
    max-width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0.5rem;
    padding-top: 0;
    border-top: 0;
    align-items: stretch;
  }

  .hero-metrics .metric-card {
    display: grid;
    align-content: start;
    gap: 0.3rem;
    min-height: 0;
    padding: 14px 14px 12px;
    border: 1px solid rgba(23, 43, 77, 0.08);
    border-right: 1px solid rgba(23, 43, 77, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(16, 35, 63, 0.05);
  }

  .hero-metrics .metric-card:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics .metric-card strong {
    font-size: 1.15rem;
    line-height: 1.08;
  }

  .hero-metrics .metric-card span {
    font-size: 0.74rem;
    line-height: 1.28;
    letter-spacing: 0.02em;
  }


  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: calc(100% - 54px);
  }

  .brand-copy strong {
    font-size: 0.77rem;
  }

  .brand-copy span {
    max-width: 16ch;
    font-size: 0.64rem;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    flex: none;
    margin-left: auto;
  }

  .site-nav {
    max-height: calc(100vh - 110px);
    overflow: auto;
  }

  .site-nav a {
    padding: 0.1rem 0;
  }

  .section-heading,
  .section-heading.section-intro {
    margin-bottom: 18px;
  }

  .hero-image-card img {
    aspect-ratio: 1.14 / 1;
  }

  .section-heading.section-intro .section-intro-content,
  .service-sidebar,
  .proof-card,
  .info-card,
  .service-application-card,
  .service-offering-card,
  .service-commitment-highlight {
    padding: 16px;
    border-radius: 16px;
  }

  .proof-card strong,
  .timeline-card strong {
    font-size: 1.02rem;
    line-height: 1.24;
  }

  .image-card-body h3,
  .client-card h3,
  .timeline-card h3,
  .benefit-card h3,
  .service-card h3 {
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .image-card-body p,
  .client-card p,
  .timeline-card p,
  .benefit-card p,
  .service-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .section-tags {
    gap: 8px;
  }

  .section-tags span {
    min-height: 30px;
    padding: 0.38rem 0.62rem;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: normal;
  }

  .gallery-item figcaption {
    padding: 14px 14px 12px;
  }

  .service-link::after {
    display: none;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0.5rem;
    padding-top: 0;
    border-top: 0;
    align-items: stretch;
  }

  .hero-metrics .metric-card {
    display: grid;
    align-content: start;
    gap: 0.3rem;
    min-height: 0;
    padding: 14px 14px 12px;
    border: 1px solid rgba(23, 43, 77, 0.08);
    border-right: 1px solid rgba(23, 43, 77, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(16, 35, 63, 0.05);
  }

  .hero-metrics .metric-card:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics .metric-card strong {
    font-size: 1.15rem;
    line-height: 1.08;
  }

  .hero-metrics .metric-card span {
    font-size: 0.74rem;
    line-height: 1.28;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 420px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics .metric-card:last-child {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions .button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none !important;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::before {
    display: none;
  }
}
