﻿@font-face {
  font-family: "Modam";
  src: url("fonts/Modam-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Modam";
  src: url("fonts/Modam-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Modam";
  src: url("fonts/Modam-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Modam";
  src: url("fonts/Modam-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f0ede7;
  --bg-soft: #f6f4f0;
  --surface: #ffffff;
  --ink: #222831;
  --ink-soft: #586270;
  --steel: #34414f;
  --line: #c8d0d8;
  --accent: #ef8f1f;
  --accent-dark: #c86e05;
  --accent-soft: #ffe2b9;
  --success: #207f56;
  --shadow-soft: 0 12px 24px rgba(45, 55, 65, 0.12);
  --shadow-strong: 0 18px 34px rgba(34, 40, 49, 0.18);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Modam", Tahoma, sans-serif;
  line-height: 1.8;
  color: var(--ink);
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35)),
    radial-gradient(1000px 600px at 0% -10%, rgba(239, 143, 31, 0.18), transparent 60%),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-soft) 100%);
}

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

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

video,
svg,
canvas {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  width: 100%;
  background: #fff;
  border: 1px solid #cfd6de;
  border-radius: 8px;
  padding: 0.74rem 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239, 143, 31, 0.18);
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 1.8rem));
  margin-inline: auto;
}

.hero-grid > *,
.projects-head > *,
.project-card,
.project-content,
.team-card > *,
.request-grid > *,
.request-copy,
.job-form,
.faq-list details,
.footer-inner > * {
  min-width: 0;
}

.hero-copy h1,
.hero-copy > p,
.hero-points li,
.trust-item strong,
.trust-item small,
.section-head h2,
.section-head p,
.service-card h3,
.service-card p,
.service-card span,
.project-content h3,
.project-content p,
.project-content li,
.project-detail-link,
.team-head h3,
.team-role,
.team-education,
.team-summary,
.request-copy h2,
.request-copy p,
.request-points li,
.quick-links a,
.form-note,
.faq-list summary,
.faq-list p,
.footer-inner p,
.footer-inner a {
  overflow-wrap: anywhere;
}

.section {
  padding-block: clamp(2.8rem, 6vw, 5rem);
  position: relative;
}

.section[id] {
  scroll-margin-top: 92px;
}

.grid-lines {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(160, 173, 186, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(160, 173, 186, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.safety-stripe {
  position: fixed;
  height: 12px;
  left: 0;
  right: 0;
  z-index: 70;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    #1f2933 0,
    #1f2933 16px,
    #f4b942 16px,
    #f4b942 32px
  );
}

.stripe-top {
  top: 0;
}

.stripe-bottom {
  bottom: 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 60;
  margin-top: 18px;
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #c8d0d8;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding-inline: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.brand-icon {
  width: 2.3rem;
  aspect-ratio: 1;
  border-radius: 7px;
  background:
    linear-gradient(150deg, #34414f, #1f2933);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.brand-icon::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 0.62rem;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: #f4b942;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.brand-text {
  display: grid;
  line-height: 1.12;
  gap: 0.16rem;
}

.brand-text strong {
  font-size: 1.08rem;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.71rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
}

.nav-links a {
  padding: 0.52rem 0.85rem;
  border-radius: 8px;
  color: #4d5867;
  font-size: 0.86rem;
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: #26303b;
  border-color: #d6dde4;
  background: #f6f8fa;
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(140deg, #ef8f1f, #c86e05);
  border-color: transparent;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0.55rem 0.92rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #1f2933;
  transition: background-color 0.2s ease;
}

.header-cta:hover {
  background: #2f3b47;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #cfd6de;
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.33rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #2c3742;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 20px rgba(200, 110, 5, 0.25);
}

.btn-ghost {
  color: var(--steel);
  background: #fff;
  border: 1px solid #c7d0d8;
}

.hero {
  padding-top: clamp(2.3rem, 7vw, 4.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.32rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(0.98rem, 2.2vw, 1.28rem) clamp(0.88rem, 2vw, 1.22rem);
  border-radius: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(198, 209, 221, 0.84);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 249, 253, 0.92) 100%),
    repeating-linear-gradient(-45deg, rgba(200, 209, 218, 0.12) 0 11px, transparent 11px 22px);
  box-shadow: 0 20px 36px rgba(34, 46, 60, 0.14);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-copy::before {
  width: 240px;
  height: 240px;
  top: -110px;
  inset-inline-end: -96px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(239, 143, 31, 0.26), rgba(239, 143, 31, 0));
}

.hero-copy::after {
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef8f1f, #f5bf67, #7ea4c8);
}

.eyebrow {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(205, 215, 226, 0.9);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 14px rgba(42, 55, 70, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  color: #657283;
  font-weight: 700;
  margin-bottom: 0.82rem;
}

.hero-copy h1 {
  font-size: clamp(2.04rem, 3.7vw, 3.5rem);
  line-height: 1.26;
  margin-bottom: 0.82rem;
  color: #1f2b38;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.08rem;
  color: #c86e05;
  background: linear-gradient(136deg, #cf6f00 0%, #f09a2f 44%, #b35f00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 16px rgba(207, 111, 0, 0.18);
}

.hero-copy > p {
  color: #596879;
  max-width: 54ch;
  line-height: 1.95;
  margin: 0;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-actions .btn {
  min-height: 47px;
  border-radius: 12px;
  padding: 0.66rem 1.28rem;
  font-size: 0.9rem;
  font-weight: 700;
  flex: 1 1 172px;
}

.hero-actions .btn-primary {
  box-shadow: 0 14px 24px rgba(203, 112, 7, 0.28);
}

.hero-actions .btn-ghost {
  border-color: #c8d4df;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(38, 52, 66, 0.08);
}

.hero-actions .btn-start-collab {
  color: #fff;
  background: linear-gradient(135deg, #ef8f1f 0%, #cb7007 100%);
  box-shadow: 0 14px 24px rgba(203, 112, 7, 0.26);
}

.hero-points {
  list-style: none;
  margin-top: 1.26rem;
  display: grid;
  gap: 0.56rem;
}

.hero-points li {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0.56rem 0.82rem 0.56rem 0.58rem;
  border: 1px solid rgba(200, 211, 222, 0.92);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 252, 0.9));
  color: #425160;
  font-size: 0.88rem;
  line-height: 1.82;
  box-shadow: 0 10px 18px rgba(35, 49, 63, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-points li:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 192, 207, 0.96);
  box-shadow: 0 14px 24px rgba(34, 47, 61, 0.14);
}

.hero-points li::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: linear-gradient(140deg, #ef8f1f, #f4ba5a);
  margin-inline-end: 0.58rem;
  box-shadow: 0 6px 12px rgba(193, 109, 9, 0.25);
}

.hero-points li:nth-child(2)::before {
  background: linear-gradient(140deg, #2f7fb4, #69add6);
  box-shadow: 0 6px 12px rgba(47, 127, 180, 0.25);
}

.hero-points li:nth-child(3)::before {
  background: linear-gradient(140deg, #2f8f63, #68c58f);
  box-shadow: 0 6px 12px rgba(47, 143, 99, 0.25);
}

.hero-media {
  position: relative;
  display: grid;
  gap: 0.9rem;
  isolation: isolate;
  z-index: 1;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -3;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(16px);
}

.hero-media::before {
  width: 260px;
  height: 260px;
  top: -86px;
  inset-inline-end: -112px;
  background: radial-gradient(circle at 30% 30%, rgba(239, 143, 31, 0.2), rgba(239, 143, 31, 0));
}

.hero-media::after {
  width: 280px;
  height: 280px;
  bottom: -132px;
  inset-inline-start: -148px;
  background: radial-gradient(circle at 70% 30%, rgba(53, 71, 90, 0.16), rgba(53, 71, 90, 0));
  opacity: 0.34;
  filter: blur(22px);
}

.hero-figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: clamp(22px, 3.4vw, 30px);
  border: 1px solid rgba(186, 198, 211, 0.85);
  background: linear-gradient(160deg, #f7fbff 0%, #eff3f7 30%, #ffffff 100%);
  box-shadow: 0 24px 42px rgba(34, 44, 56, 0.2);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-media:hover .hero-figure {
  transform: translateY(-4px);
  border-color: rgba(167, 181, 196, 0.92);
  box-shadow: 0 30px 48px rgba(32, 42, 54, 0.24);
}

.hero-figure-badge {
  position: absolute;
  top: 0.9rem;
  inset-inline-start: 0.9rem;
  z-index: 3;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(23, 33, 45, 0.7);
  color: #f6f9fc;
  font-size: 0.73rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-figure-badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #8fe26f;
  box-shadow: 0 0 0 3px rgba(143, 226, 111, 0.28);
}

.hero-figure img {
  height: clamp(270px, 33vw, 420px);
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.04);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.hero-media:hover .hero-figure img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
}

.hero-figure figcaption {
  position: relative;
  z-index: 2;
  padding: 0.74rem 0.9rem 0.82rem;
  display: grid;
  gap: 0.14rem;
  border-top: 1px solid rgba(187, 199, 212, 0.8);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 252, 0.92)),
    repeating-linear-gradient(-45deg, rgba(193, 204, 217, 0.17) 0 10px, transparent 10px 20px);
}

.hero-showcase-progress {
  display: block;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(111, 129, 149, 0.24);
  margin-bottom: 0.36rem;
}

.hero-showcase-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 185, 66, 0.95), rgba(255, 244, 220, 0.95));
  transform-origin: right center;
  transform: scaleX(1);
}

.hero-showcase-progress-bar.is-running {
  animation: heroShowcaseCountdown var(--hero-showcase-duration, 4500ms) linear forwards;
}

@keyframes heroShowcaseCountdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.hero-figure small {
  color: #6c7a89;
  font-size: 0.71rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-figure strong {
  font-size: 1rem;
  line-height: 1.52;
  color: #1f2c39;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-figure figcaption span {
  display: none;
}

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

.hero-metrics article {
  position: relative;
  overflow: hidden;
  padding: 0.78rem 0.65rem 0.72rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 247, 251, 0.93) 100%);
  border: 1px solid rgba(190, 201, 214, 0.84);
  text-align: center;
  box-shadow: 0 12px 22px rgba(32, 44, 57, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-metrics article::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef8f1f, #f4ba5a);
}

.hero-metrics article:nth-child(1)::before {
  background: linear-gradient(90deg, #2c7ab2, #5caad8);
}

.hero-metrics article:nth-child(3)::before {
  background: linear-gradient(90deg, #2f9965, #66c38c);
}

.hero-metrics article:hover {
  transform: translateY(-3px);
  border-color: rgba(172, 186, 201, 0.92);
  box-shadow: 0 16px 26px rgba(32, 43, 57, 0.17);
}

.hero-metrics strong {
  display: block;
  font-size: 1.18rem;
  color: #21303d;
  line-height: 1.25;
}

.hero-metrics span {
  font-size: 0.77rem;
  color: #677586;
}

.trust-strip {
  padding-top: 1.25rem;
  padding-bottom: 1.35rem;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0;
}

.trust-item {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.58rem;
  row-gap: 0.14rem;
  padding: 0.72rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, #f6f8fb 100%);
  box-shadow: 0 10px 18px rgba(34, 40, 49, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-item::before {
  content: "✓";
  position: static;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  width: 1.2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  background: linear-gradient(140deg, var(--steel), #55708c);
  box-shadow: 0 5px 10px rgba(52, 65, 79, 0.28);
}

.trust-item strong {
  grid-column: 2;
  margin: 0;
  min-width: 0;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.trust-item small {
  grid-column: 2;
  margin: 0;
  min-width: 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: #aebcc9;
  box-shadow: 0 14px 24px rgba(34, 40, 49, 0.15);
}

.trust-item:nth-child(2)::before {
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 12px rgba(200, 110, 5, 0.28);
}

.trust-item:nth-child(3)::before {
  background: linear-gradient(140deg, #46596d, #6d8094);
  box-shadow: 0 6px 12px rgba(70, 89, 109, 0.28);
}

.trust-item:nth-child(4)::before {
  background: linear-gradient(140deg, var(--success), #59b57e);
  box-shadow: 0 6px 12px rgba(32, 127, 86, 0.3);
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.3rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.73rem;
  color: #6e7886;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.section-kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--accent);
}

.section-head h2 {
  font-size: clamp(1.44rem, 2.6vw, 2.2rem);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--ink-soft);
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.92rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.02rem 1rem 0.98rem;
  border: 1px solid rgba(198, 210, 222, 0.9);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 253, 0.94) 100%),
    repeating-linear-gradient(-45deg, rgba(197, 207, 216, 0.12) 0 10px, transparent 10px 20px);
  box-shadow: 0 14px 24px rgba(36, 49, 63, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef8f1f, #f4ba5a);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -74px;
  inset-inline-end: -66px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(75, 143, 192, 0.22), rgba(75, 143, 192, 0));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(172, 188, 202, 0.94);
  box-shadow: 0 20px 32px rgba(34, 46, 60, 0.17);
}

.service-card:not([data-tone]):nth-child(2)::before,
.service-card:not([data-tone]):nth-child(5)::before {
  background: linear-gradient(90deg, #2f7fb4, #69add6);
}

.service-card:not([data-tone]):nth-child(3)::before,
.service-card:not([data-tone]):nth-child(6)::before {
  background: linear-gradient(90deg, #2f8f63, #68c58f);
}

.service-card[data-tone="blue"]::before {
  background: linear-gradient(90deg, #2f7fb4, #69add6);
}

.service-card[data-tone="green"]::before {
  background: linear-gradient(90deg, #2f8f63, #68c58f);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  color: #223241;
  line-height: 1.45;
  margin-bottom: 0.42rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: #5d6d7d;
  font-size: 0.86rem;
  line-height: 1.96;
  margin-bottom: 0.62rem;
}

.service-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 32px;
  padding-inline: 0.56rem;
  padding-inline-start: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 194, 136, 0.95);
  background: linear-gradient(180deg, #fff3de, #ffe7be);
  color: #875208;
  font-size: 0.74rem;
  font-weight: 700;
}

.service-card span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ef8f1f, #f4ba5a);
}

.service-card:not([data-tone]):nth-child(2) span,
.service-card:not([data-tone]):nth-child(5) span {
  border-color: rgba(154, 199, 230, 0.95);
  background: linear-gradient(180deg, #e7f4ff, #d4ecff);
  color: #2f6188;
}

.service-card:not([data-tone]):nth-child(2) span::before,
.service-card:not([data-tone]):nth-child(5) span::before {
  background: linear-gradient(140deg, #2f7fb4, #69add6);
}

.service-card:not([data-tone]):nth-child(3) span,
.service-card:not([data-tone]):nth-child(6) span {
  border-color: rgba(154, 214, 184, 0.96);
  background: linear-gradient(180deg, #e7faef, #d5f3e1);
  color: #2c7352;
}

.service-card:not([data-tone]):nth-child(3) span::before,
.service-card:not([data-tone]):nth-child(6) span::before {
  background: linear-gradient(140deg, #2f8f63, #68c58f);
}

.service-card[data-tone="blue"] span {
  border-color: rgba(154, 199, 230, 0.95);
  background: linear-gradient(180deg, #e7f4ff, #d4ecff);
  color: #2f6188;
}

.service-card[data-tone="blue"] span::before {
  background: linear-gradient(140deg, #2f7fb4, #69add6);
}

.service-card[data-tone="green"] span {
  border-color: rgba(154, 214, 184, 0.96);
  background: linear-gradient(180deg, #e7faef, #d5f3e1);
  color: #2c7352;
}

.service-card[data-tone="green"] span::before {
  background: linear-gradient(140deg, #2f8f63, #68c58f);
}

.projects .container {
  position: relative;
  border-radius: 22px;
  border: 1px solid #ccd5de;
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  box-shadow: var(--shadow-soft);
  padding: clamp(0.9rem, 2vw, 1.35rem);
  overflow: hidden;
}

.projects .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 250px at -16% -24%, rgba(244, 185, 66, 0.16), transparent 64%),
    radial-gradient(460px 220px at 116% 12%, rgba(95, 115, 136, 0.1), transparent 66%);
}

.projects-head {
  max-width: none;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.95rem;
}

.projects-head-copy {
  max-width: 68ch;
}

.project-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.44rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.05rem;
  border: 1px solid #d0d9e2;
  border-radius: 14px;
  background: #f1f5f9;
  padding: 0.34rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.44rem 0.88rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #4f5e6e;
  font-weight: 600;
  cursor: pointer;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover {
  color: #2d3a47;
  border-color: #c8d2dd;
  background: #ffffff;
  transform: translateY(-1px);
}

.filter-btn.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(140deg, #2b3744, #3d4f62);
  box-shadow: 0 8px 16px rgba(36, 48, 62, 0.22);
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 0.95rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #ccd6df;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card[data-project-url] {
  cursor: pointer;
}

.project-card[data-project-url]:focus-visible {
  outline: 3px solid rgba(75, 126, 186, 0.35);
  outline-offset: 2px;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: #b8c5d2;
  box-shadow: 0 18px 30px rgba(37, 49, 62, 0.16);
}

.project-slider {
  position: relative;
  border-bottom: 1px solid #dfe7ef;
}

.project-image {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
  position: relative;
  display: block;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.16), rgba(17, 24, 32, 0.03) 38%, rgba(17, 24, 32, 0.35));
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(28, 38, 49, 0.64);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  backdrop-filter: blur(3px);
}

.project-card:hover .slider-btn,
.slider-btn:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.slider-btn:hover {
  background: rgba(22, 32, 42, 0.8);
}

.slider-btn.prev {
  inset-inline-end: 0.62rem;
}

.slider-btn.next {
  inset-inline-start: 0.62rem;
}

.slider-dots {
  position: absolute;
  inset-inline: 0;
  bottom: 0.65rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.34rem;
  pointer-events: none;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.36);
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.slider-dot.is-active {
  width: 19px;
  background: #f4b942;
  border-color: #f4b942;
}

.slider-progress {
  position: absolute;
  inset-inline: 0.62rem;
  bottom: 0.54rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.slider-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 185, 66, 0.96), rgba(255, 242, 209, 0.92));
  transform-origin: right center;
  transform: scaleX(1);
}

.slider-progress-bar.is-running {
  animation: sliderCountdown var(--slider-progress-duration, 4200ms) linear forwards;
}

@keyframes sliderCountdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.project-slider.is-single .slider-btn,
.project-slider.is-single .slider-dots,
.project-slider.is-single .slider-progress {
  display: none;
}

.project-tag {
  position: absolute;
  inset-inline-start: 0.62rem;
  top: 0.62rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(28, 39, 51, 0.78);
  color: #fff;
  font-size: 0.72rem;
  z-index: 3;
}

.project-card[data-category="interior"] .project-tag {
  background: rgba(26, 60, 96, 0.76);
}

.project-card[data-category="facade"] .project-tag {
  background: rgba(61, 91, 56, 0.78);
}

.project-card[data-category="decorative"] .project-tag {
  background: rgba(116, 68, 29, 0.8);
}

.project-content {
  flex: 1;
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.project-content h3 {
  font-size: 1rem;
  line-height: 1.62;
}

.project-content p {
  color: #5c6a79;
  font-size: 0.86rem;
  line-height: 1.9;
}

.project-content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: auto;
}

.project-content li {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 28px;
  font-size: 0.75rem;
  color: #4f5e6e;
  border: 1px solid #d5dee7;
  border-radius: 999px;
  padding: 0.16rem 0.56rem;
  background: #ffffff;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.project-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f4b942;
}

.project-detail-link {
  margin-top: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #c8d9ee;
  background: #f4f9ff;
  color: #284f78;
  padding: 0.18rem 0.72rem;
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.project-detail-link:hover {
  background: #e8f3ff;
  border-color: #aac6eb;
}

.project-empty {
  margin: 0;
  border: 1px dashed #c8d5e4;
  border-radius: 14px;
  background: linear-gradient(170deg, #ffffff, #f5f9fd);
  color: #5c6d81;
  text-align: center;
  padding: 1rem;
  font-size: 0.86rem;
  line-height: 1.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.team-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid #cfd8e0;
  background:
    radial-gradient(500px 220px at -10% -20%, rgba(244, 185, 66, 0.17), transparent 62%),
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
  min-height: 248px;
  align-items: stretch;
  align-self: start;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f4b942, #ef8f1f);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    120deg,
    rgba(118, 186, 246, 0) 8%,
    rgba(118, 186, 246, 0.16) 34%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(118, 186, 246, 0.16) 66%,
    rgba(118, 186, 246, 0) 92%
  );
  transform: translateX(-42%) scale(1.02);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(35, 44, 55, 0.2);
}

.team-card:focus-visible {
  outline: 2px solid rgba(118, 186, 246, 0.7);
  outline-offset: 2px;
}

.team-card.is-pressing {
  transform: translateY(-1px) scale(0.997);
  box-shadow: 0 14px 24px rgba(35, 44, 55, 0.16);
}

.team-card.is-pressing::after {
  opacity: 0.34;
  transform: translateX(-10%) scale(1.02);
}

.team-card.is-tapped::after {
  animation: teamCardTapSheen 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes teamCardTapSheen {
  0% {
    opacity: 0;
    transform: translateX(-52%) scale(1.02);
  }
  32% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translateX(58%) scale(1.02);
  }
}

.team-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #edf3f8 0%, #d9e3ec 100%);
}

.team-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  opacity: 0.9;
  transform: scale(1.01);
  filter: saturate(0.94);
  object-fit: cover;
  object-position: center center;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.95s ease, filter 0.95s ease;
}

.team-card.is-expanded .team-photo-wrap img {
  opacity: 1;
  transform: scale(1.07);
  filter: saturate(1.05);
}

.team-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.14rem 0.58rem;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #c8d9ef;
  color: #2f5274;
  font-size: 0.72rem;
  font-weight: 700;
  max-width: calc(100% - 7rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-body {
  padding: 0.92rem 0.98rem 0.92rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.52rem;
  min-width: 0;
}

.team-body-minimal {
  gap: 0.42rem;
  justify-content: flex-start;
}

.team-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.team-head h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.4;
  flex: 1;
  text-align: right;
  overflow-wrap: break-word;
  word-break: normal;
}

.team-head .team-rate {
  flex-shrink: 0;
}

.team-meta {
  margin-top: auto;
  padding-top: 0.42rem;
  border-top: 1px dashed #d3dee9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.46rem;
}

.team-rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  font-size: 0.74rem;
  padding: 0.14rem 0.44rem;
  border-radius: 999px;
  background: #ffefcf;
  color: #8a4f00;
  border: 1px solid #f3d9a3;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-rate.is-excellent {
  background: #e8f7ee;
  color: #21683e;
  border-color: #a9dcc0;
}

.team-rate.is-good {
  background: #eaf2ff;
  color: #2a4f84;
  border-color: #b8cef4;
}

.team-rate.is-mid {
  background: #fff3dd;
  color: #8a4f00;
  border-color: #f2d5a0;
}

.team-rate.is-low {
  background: #ffe9e6;
  color: #8d2d26;
  border-color: #efb7b2;
}

.team-rate.is-neutral {
  background: #eef2f7;
  color: #4b5a6a;
  border-color: #c9d4e0;
}

.team-role {
  margin: 0;
  color: #2f3e4d;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.72;
  overflow-wrap: break-word;
  word-break: normal;
}

.team-education {
  margin: 0;
  color: #405063;
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: normal;
}

.team-summary-wrap {
  display: grid;
  gap: 0.36rem;
}

.team-summary {
  margin: 0;
  color: #637182;
  font-size: 0.82rem;
  line-height: 1.9;
  overflow-wrap: break-word;
  word-break: normal;
  overflow: hidden;
  opacity: 0.9;
  transform: translateY(3px);
  transition:
    max-height 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.52s ease,
    transform 0.52s ease;
  will-change: max-height;
}

.team-summary.is-collapsed {
  max-height: var(--team-summary-collapsed-height, 52px);
}

.team-card.is-expanded .team-summary {
  opacity: 1;
  transform: translateY(0);
}

.team-summary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  justify-content: center;
  margin: 0;
  min-height: 30px;
  border: 1px solid #9ebce0;
  background: linear-gradient(180deg, #f7fbff 0%, #e9f2ff 100%);
  color: #2a4f84;
  border-radius: 999px;
  padding: 0.18rem 0.78rem;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.team-summary-toggle:hover {
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-color: #86acd7;
  color: #1f4576;
  transform: translateY(-1px);
}

.team-summary-toggle::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.36s ease;
}

.team-summary-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(1px);
}

.team-skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0.1rem 0 0;
  padding: 0;
}

.team-skills-compact {
  gap: 0.36rem;
  margin-top: 0.06rem;
  overflow: hidden;
  max-height: 76px;
  transition: max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card.is-expanded .team-skills-compact {
  max-height: 300px;
}

.team-skills-compact .team-skill-extra {
  display: none;
}

.team-card.is-expanded .team-skills-compact .team-skill-extra {
  display: inline-flex;
  animation: teamSkillReveal 0.66s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--skill-delay, 0ms);
}

@keyframes teamSkillReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.team-skills li {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 32px;
  border: 1px solid #cfdbe6;
  border-radius: 999px;
  padding: 0.24rem 0.66rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  color: #364453;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 3px 7px rgba(53, 69, 85, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-skills-compact li {
  min-height: 28px;
  font-size: 0.7rem;
  padding: 0.2rem 0.56rem;
  box-shadow: none;
  background: linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
}

.team-skills li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ef8f1f, #f4b942);
}

.team-skills li:nth-child(2n)::before {
  background: linear-gradient(140deg, #2f3c49, #5f7388);
}

.team-card:hover .team-skills li {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 5px 10px rgba(45, 59, 74, 0.11);
}

.process-wrap {
  position: relative;
  border: 1px solid #ccd6df;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
  padding: clamp(0.9rem, 2vw, 1.25rem);
  overflow: hidden;
}

.process-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 260px at -18% -24%, rgba(244, 185, 66, 0.16), transparent 66%),
    radial-gradient(470px 220px at 118% 14%, rgba(66, 89, 114, 0.12), transparent 64%);
}

.process-head {
  position: relative;
  z-index: 1;
  margin-bottom: 0.72rem;
}

.process-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.process-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  border: 1px solid #d3dde7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #465566;
  font-size: 0.8rem;
  font-weight: 600;
}

.process-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ef8f1f, #f4b942);
}

.process-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.86rem;
}

.step-card {
  position: relative;
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid #cfdae4;
  background: linear-gradient(180deg, #ffffff, #f8fcff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef8f1f, #f4b942);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 1.68rem;
  inset-inline-end: -0.82rem;
  width: 0.9rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(95, 115, 136, 0.2), rgba(95, 115, 136, 0.55));
}

.step-card:last-child::after {
  display: none;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #bccada;
  box-shadow: 0 16px 28px rgba(41, 54, 69, 0.15);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #2f3c49, #425366);
  color: #fff;
  margin-bottom: 0.55rem;
  box-shadow: 0 6px 12px rgba(47, 60, 73, 0.24);
}

.step-card h3 {
  font-size: 0.97rem;
  margin-bottom: 0.32rem;
}

.step-card p {
  color: #607080;
  font-size: 0.84rem;
  line-height: 1.86;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: start;
}

.request-copy {
  position: relative;
  display: grid;
  gap: 0.88rem;
  align-content: start;
  padding: 1.18rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #cad6e1;
  background:
    radial-gradient(460px 220px at -10% -26%, rgba(244, 185, 66, 0.2), transparent 64%),
    linear-gradient(160deg, #ffffff, #f5f9fc);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.request-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.55), transparent 46%);
}

.request-copy h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.45;
  margin: 0;
  color: #273340;
}

.request-copy p {
  margin: 0;
  color: #5a6877;
  line-height: 1.9;
}

.request-points {
  list-style: none;
  display: grid;
  gap: 0.48rem;
  margin: 0;
}

.request-points li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  padding-inline: 0.64rem;
  border-radius: 9px;
  border: 1px solid #d6e0e9;
  background: rgba(255, 255, 255, 0.88);
  color: #495a6a;
  font-size: 0.82rem;
  font-weight: 600;
}

.request-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(140deg, #ef8f1f, #f4b942);
}

.quick-links {
  display: grid;
  gap: 0.56rem;
  margin: 0;
}

.quick-links a {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.72rem;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quick-links a:first-child {
  border: 1px solid transparent;
  background: linear-gradient(140deg, #ef8f1f, #cb7007);
  color: #fff;
  box-shadow: 0 12px 20px rgba(203, 112, 7, 0.24);
}

.quick-links a:last-child {
  border: 1px solid #cdd8e2;
  background: #fff;
  color: #3c4b5a;
}

.quick-links a:hover {
  transform: translateY(-1px);
}

.quick-links a:last-child:hover {
  background: #f4f8fb;
}

.job-form {
  position: relative;
  display: grid;
  gap: 0.78rem;
  padding: 1.05rem;
  border-radius: 16px;
  border: 1px solid #c8d4df;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.job-form::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef8f1f, #f4b942);
}

.job-form label {
  display: grid;
  gap: 0.38rem;
  color: #425363;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.job-form input,
.job-form select,
.job-form textarea {
  border-radius: 10px;
  border-color: #cfd9e3;
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  color: #2f3d4c;
  min-height: 48px;
}

.job-form textarea {
  min-height: 124px;
}

.job-form input::placeholder,
.job-form textarea::placeholder {
  color: #98a4b2;
}

.job-form input:focus,
.job-form select:focus,
.job-form textarea:focus {
  border-color: #ef8f1f;
  box-shadow: 0 0 0 4px rgba(239, 143, 31, 0.17);
}

.form-note {
  color: #687585;
  font-size: 0.76rem;
  line-height: 1.9;
  padding: 0.52rem 0.62rem;
  border-radius: 10px;
  border: 1px dashed #d4dde6;
  background: #f7fafd;
  overflow-wrap: anywhere;
}

.job-form .btn-primary {
  width: 100%;
  min-height: 50px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 24px rgba(203, 112, 7, 0.24);
}

.form-status {
  min-height: 1.3rem;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-status.is-error {
  color: #b94124;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-list details {
  border: 1px solid #ced8e2;
  border-radius: 14px;
  background: linear-gradient(165deg, #ffffff, #f4f8fc);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1rem;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  color: #243140;
  list-style: none;
  padding-inline-end: 1.4rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  color: #c86e05;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0.56rem;
  color: #566475;
  line-height: 1.95;
}

.site-footer {
  border-top: 1px solid #ccd4dc;
  background: rgba(255, 255, 255, 0.9);
}

.footer-meta {
  display: grid;
  gap: 0.08rem;
}

.footer-contact a {
  color: #2c3946;
  font-weight: 700;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  color: #617080;
  font-size: 0.84rem;
}

.footer-inner a {
  color: #2c3946;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 25, 31, 0.82);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-frame {
  max-width: min(980px, 92vw);
  max-height: 88vh;
  display: grid;
  gap: 0.5rem;
}

.lightbox-frame img {
  max-height: calc(88vh - 40px);
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-frame figcaption {
  text-align: center;
  color: #f3f6f8;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .projects-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-filters {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
  }

  .service-card {
    min-height: 206px;
  }

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

  .step-card::after {
    display: none;
  }

  .request-grid {
    grid-template-columns: 1fr;
    gap: 0.92rem;
  }

  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.56rem;
  }
}

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

  .brand {
    grid-column: 1;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    inset-inline: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.34rem;
    background: #fff;
    border: 1px solid #cdd6df;
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: var(--shadow-soft);
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

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

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

  .hero-copy {
    padding: 1rem 0.96rem;
    border-radius: 20px;
  }

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

  .slider-btn {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1180px, calc(100% - 1.1rem));
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 66px;
  }

  .header-cta {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-metrics article {
    padding: 0.65rem 0.45rem 0.6rem;
    border-radius: 12px;
  }

  .hero-metrics strong {
    font-size: 1rem;
  }

  .hero-metrics span {
    font-size: 0.68rem;
  }

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

  .hero-figure-badge {
    top: 0.72rem;
    inset-inline-start: 0.72rem;
    min-height: 27px;
    font-size: 0.66rem;
  }

  .hero-figure figcaption {
    padding: 0.66rem 0.76rem 0.72rem;
  }

  .hero-figure small {
    font-size: 0.66rem;
  }

  .hero-figure strong {
    font-size: 0.93rem;
  }

  .hero-copy {
    padding: 0.88rem 0.8rem;
    border-radius: 16px;
  }

  .eyebrow {
    min-height: 27px;
    font-size: 0.61rem;
    margin-bottom: 0.58rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 8.4vw, 2.44rem);
    line-height: 1.34;
    margin-bottom: 0.64rem;
  }

  .hero-copy > p {
    font-size: 0.87rem;
    line-height: 1.86;
  }

  .hero-actions {
    margin-top: 0.92rem;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    min-height: 43px;
    border-radius: 10px;
    padding: 0.58rem 0.88rem;
    font-size: 0.81rem;
  }

  .hero-points {
    margin-top: 0.98rem;
    gap: 0.44rem;
  }

  .hero-points li {
    min-height: 42px;
    padding: 0.5rem 0.66rem 0.5rem 0.5rem;
    font-size: 0.77rem;
    border-radius: 10px;
  }

  .hero-points li::before {
    width: 0.86rem;
    height: 0.86rem;
    margin-inline-end: 0.5rem;
  }

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

  .service-card {
    min-height: 0;
    padding: 0.9rem 0.86rem 0.88rem;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.82rem;
    margin-bottom: 0.54rem;
  }

  .service-card span {
    min-height: 30px;
    font-size: 0.71rem;
    padding-inline: 0.5rem;
    padding-inline-start: 0.64rem;
  }

  .request-copy {
    gap: 0.72rem;
    padding: 1rem 0.95rem;
    border-radius: 14px;
  }

  .request-copy h2 {
    line-height: 1.5;
  }

  .request-points {
    gap: 0.42rem;
  }

  .request-points li {
    min-height: 36px;
    font-size: 0.78rem;
  }

  .quick-links {
    gap: 0.48rem;
  }

  .quick-links a {
    min-height: 44px;
    font-size: 0.82rem;
  }

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

  .projects .container {
    border-radius: 16px;
    padding: 0.82rem;
  }

  .project-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .filter-btn {
    justify-content: center;
  }

  .project-image img {
    height: 196px;
  }

  .process-wrap {
    border-radius: 16px;
    padding: 0.82rem;
  }

  .process-strip {
    grid-template-columns: 1fr;
    gap: 0.44rem;
  }

  .team-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap {
    height: clamp(360px, 74vh, 620px);
    min-height: 360px;
    max-height: none;
    aspect-ratio: auto;
  }

  .team-photo-wrap img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .team-body {
    padding: 0.82rem 0.84rem 0.9rem;
  }

  .team-meta {
    flex-wrap: nowrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    padding: 0.54rem;
    border-radius: 16px;
  }

  .trust-item {
    min-height: 56px;
    grid-template-columns: 1.12rem minmax(0, 1fr);
    column-gap: 0.5rem;
    padding: 0.58rem 0.72rem;
  }

  .trust-item strong {
    font-size: 0.86rem;
  }

  .trust-item small {
    font-size: 0.72rem;
  }

  .trust-item::before {
    width: 1.1rem;
    font-size: 0.6rem;
  }

  .footer-inner {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
  }

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .btn-start-collab {
    grid-column: 1 / -1;
  }

  .project-filters {
    grid-template-columns: 1fr;
  }
}

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

  .hero-actions .btn {
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1180px, calc(100% - 0.7rem));
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .project-filters {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
