:root {
  --ink: #111214;
  --paper: #ffffff;
  --muted: #6f7378;
  --gold: #F2C340;
  --gold-deep: #F2C340;
  --hero-radius: 28px;
  --container: min(1380px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #efe9dd 0%, #f6f5f2 35%, #fcfcfb 100%);
}

.page-bg-shape {
  position: fixed;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 195, 64, 0.26), rgba(242, 195, 64, 0));
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-strip {
  background: #0e0f11;
  color: #f2f2f2;
  font-size: 0.85rem;
}

.top-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.strip-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.strip-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.strip-icon {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
}

.strip-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--gold);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: rgba(242, 195, 64, 0.9);
}

.main-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 80;
}

.nav-shell {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
  text-decoration: none;
  color: #151515;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.85rem;
}

.logo-image {
  display: block;
  width: auto;
  height: 78px;
  max-width: 430px;
  object-fit: contain;
  transform: scale(2.65);
  transform-origin: left center;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #222428;
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-chip,
.quote-chip {
  text-decoration: none;
  color: #1e2024;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.call-chip {
  padding: 10px 16px 10px 10px;
}

.call-icon,
.arrow-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quote-chip {
  background: var(--gold);
  color: #fff;
  padding: 8px 22px 8px 8px;
}

.quote-chip .arrow-dot {
  background: #fff;
  color: var(--gold-deep);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #dddddd;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.menu-toggle:hover {
  border-color: rgba(242, 195, 64, 0.9);
}

.menu-toggle-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #16181c;
  transform-origin: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  width: var(--container);
  margin: 0 auto;
  min-height: 640px;
  border-radius: var(--hero-radius);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-image, url("https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?auto=format&fit=crop&w=2000&q=80"));
  background-size: cover;
  background-position: center;
  transition: background-image 0.35s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(5, 6, 9, 0.78) 20%, rgba(5, 6, 9, 0.44) 52%, rgba(5, 6, 9, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #ffffff;
  padding: 142px 76px;
  animation: reveal 0.8s ease;
}

.hero-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f0f0f0;
  opacity: 0.9;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.95rem, 4.2vw, 3.45rem);
  line-height: 1.08;
}

.hero p {
  margin: 24px 0 0;
  font-size: clamp(0.94rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  max-width: 560px;
  color: #f5f5f5;
}

.look-btn {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: #fff;
  color: #121315;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  padding: 10px 26px 10px 10px;
  transition: transform 0.2s ease;
}

.look-btn span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
}

.look-btn:hover {
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  background: #fff;
  border-radius: 28px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #111;
  opacity: 0.85;
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  width: 14px;
  height: 14px;
  background: var(--gold);
}

.services-preview {
  margin-top: 44px;
  background: #eeeeee;
  padding: 56px 0 62px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-shift: 20px;
  --card-scale: 0.97;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 40px 46px 38px;
  min-height: 326px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: perspective(920px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--card-shift)) scale(var(--card-scale));
  transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -32% -100%;
  background: linear-gradient(
    114deg,
    rgba(255, 255, 255, 0) 43%,
    rgba(255, 255, 255, 0.46) 50%,
    rgba(255, 255, 255, 0) 57%
  );
  transform: translateX(-70%);
  pointer-events: none;
  opacity: 0;
}

.services-preview.is-visible .service-card {
  --card-shift: 0px;
  --card-scale: 1;
  opacity: 1;
}

.service-card:hover,
.service-card:focus-within {
  --card-shift: -10px;
  --card-scale: 1.015;
  border-color: rgba(242, 195, 64, 0.35);
  box-shadow: 0 20px 38px rgba(28, 28, 28, 0.1);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  animation: card-sheen 0.95s ease;
}

.service-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.service-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #e7e7e7;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 6px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.28rem, 1.35vw, 1.52rem);
  line-height: 1.22;
  max-width: 290px;
}

.service-divider {
  margin: 30px 0;
  border-top: 1px solid #d0d0d0;
  position: relative;
  overflow: hidden;
}

.service-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover .service-divider::after,
.service-card:focus-within .service-divider::after {
  width: 100%;
}

.service-card p {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.65;
  color: #5f6368;
  max-width: 320px;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: #e2ddd4;
  transform: rotate(-4deg) scale(1.04);
}

.about-highlight {
  background: #f0f0f0;
  padding: 72px 0 78px;
  overflow: clip;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-visual,
.about-content {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.about-visual {
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  min-width: 236px;
}

.about-badge strong {
  display: block;
  font-size: clamp(2.2rem, 3vw, 3.15rem);
  line-height: 1;
  font-family: "Sora", sans-serif;
}

.about-badge span {
  display: block;
  margin-top: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-content {
  position: relative;
}

.about-content::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -92px;
  width: 320px;
  height: 220px;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(155deg, transparent 40%, #d9d9d9 40.8%, transparent 41.5%),
    linear-gradient(155deg, transparent 55%, #d9d9d9 55.8%, transparent 56.5%),
    linear-gradient(90deg, #d9d9d9 0 1px, transparent 1px),
    linear-gradient(0deg, #d9d9d9 0 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 100%, 100% 34px;
}

.about-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.84rem;
}

.about-content h2 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 3.5vw, 3.45rem);
  line-height: 1.12;
  max-width: 620px;
}

.about-tabs {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-tab {
  border: 0;
  border-radius: 999px;
  background: #f8f8f8;
  color: #2a2b2f;
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.about-tab span {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.about-tab:hover {
  transform: translateY(-1px);
}

.about-tab.is-active {
  background: var(--gold);
  color: #ffffff;
}

.about-tab.is-active span {
  color: #ffffff;
}

.about-divider {
  margin-top: 26px;
  border-top: 1px solid #dadada;
}

.about-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.about-details img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.about-copy p {
  margin: 0;
  color: #5f6368;
  font-size: 1.01rem;
  line-height: 1.6;
  max-width: 460px;
}

.about-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-points li {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #28292c;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-points li::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-cta {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 9px 22px 9px 9px;
  transition: transform 0.2s ease;
}

.about-cta span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--gold-deep);
  font-size: 1.12rem;
}

.about-cta:hover {
  transform: translateY(-2px);
}

.about-highlight.is-visible .about-visual,
.about-highlight.is-visible .about-content {
  opacity: 1;
  transform: translateY(0);
}

.about-highlight.is-visible .about-content {
  transition-delay: 0.1s;
}

.path-showcase {
  background: #efefef;
  padding: 20px 0 78px;
}

.path-shell {
  background: linear-gradient(145deg, #0f1013 0%, #121316 56%, #0d0e11 100%);
  border-radius: 34px;
  padding: 96px 82px 84px;
  position: relative;
  overflow: hidden;
}

.path-shell::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -76px;
  width: 430px;
  height: 260px;
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 46px 100%, 100% 36px;
}

.path-kicker {
  margin: 0;
  display: table;
  margin-inline: auto;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  font-weight: 700;
}

.path-shell h2 {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  color: #f4f4f4;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.14;
}

.path-slider {
  margin-top: 56px;
  position: relative;
}

.path-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  z-index: 2;
}

.path-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.path-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.path-arrow-prev {
  left: -82px;
}

.path-arrow-next {
  right: -82px;
}

.path-viewport {
  overflow: hidden;
}

.path-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

.path-card {
  --path-tilt-x: 0deg;
  --path-tilt-y: 0deg;
  --path-shift: 26px;
  --path-scale: 0.985;
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  background: #f5f5f5;
  color: #1d1f24;
  border-radius: 20px;
  padding: 10px 38px 28px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: perspective(1020px) rotateX(var(--path-tilt-x)) rotateY(var(--path-tilt-y))
    translateY(var(--path-shift)) scale(var(--path-scale));
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform, opacity;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: -30% -100%;
  background: linear-gradient(
    114deg,
    rgba(255, 255, 255, 0) 43%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0) 57%
  );
  transform: translateX(-75%);
  opacity: 0;
  pointer-events: none;
}

.path-showcase.is-visible .path-card {
  --path-shift: 0px;
  --path-scale: 1;
  opacity: 1;
}

.path-card:hover,
.path-card:focus-within {
  --path-shift: -10px;
  --path-scale: 1.01;
  border-color: rgba(242, 195, 64, 0.35);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.path-card:hover::before,
.path-card:focus-within::before {
  opacity: 1;
  animation: card-sheen 0.95s ease;
}

.path-showcase.is-visible .path-card:nth-child(2) {
  transition-delay: 0.08s;
}

.path-showcase.is-visible .path-card:nth-child(3) {
  transition-delay: 0.16s;
}

.path-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
}

.path-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.45s ease;
}

.path-icon {
  position: absolute;
  right: 18px;
  bottom: -24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e8e8e8;
  border: 1px solid #dddddd;
  display: grid;
  place-items: center;
  color: #3d3f45;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.path-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-card h3 {
  margin: 26px 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.28rem, 1.34vw, 1.52rem);
  line-height: 1.2;
}

.path-divider {
  margin: 16px 0 18px;
  border-top: 1px solid #dadada;
  position: relative;
  overflow: hidden;
}

.path-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.path-card p {
  margin: 0;
  color: #5f646b;
  font-size: 0.92rem;
  line-height: 1.62;
  max-width: 360px;
}

.path-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1b1d22;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
}

.path-link span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111216;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.path-card:hover .path-media img,
.path-card:focus-within .path-media img {
  transform: scale(1.05);
}

.path-card:hover .path-icon,
.path-card:focus-within .path-icon {
  transform: rotate(-7deg) scale(1.04);
  background: #e2ddd4;
  color: var(--gold-deep);
}

.path-card:hover .path-divider::after,
.path-card:focus-within .path-divider::after {
  width: 100%;
}

.path-card:hover .path-link span,
.path-card:focus-within .path-link span {
  transform: translateX(2px) translateY(-2px);
  background: #1f2126;
}

.process-roadmap {
  background: #efefef;
  padding: 10px 0 90px;
}

.process-shell {
  padding-top: 16px;
}

.process-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.process-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-kicker::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.process-heading h2 {
  margin: 18px 0 0;
  max-width: 540px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.14;
}

.process-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  flex-shrink: 0;
}

.process-arrow {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #a9a9a9;
  background: transparent;
  color: #181a1f;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease, opacity 0.25s ease;
}

.process-arrow:hover {
  transform: translateY(-2px);
}

.process-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.process-arrow-next {
  border-color: #101114;
}

.process-arrow-next:not(:disabled) {
  background: #0f1013;
  color: #ffffff;
}

.process-viewport {
  margin-top: 44px;
  overflow: hidden;
}

.process-track {
  display: flex;
  gap: 26px;
  transition: transform 0.5s ease;
}

.process-card {
  --process-tilt-x: 0deg;
  --process-tilt-y: 0deg;
  --process-shift: 20px;
  --process-lift: 0px;
  --process-scale: 0.985;
  flex: 0 0 calc((100% - 78px) / 4);
  min-width: 0;
  position: relative;
  padding: 0 14px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
  overflow: hidden;
  opacity: 0;
  transform: perspective(960px) rotateX(var(--process-tilt-x)) rotateY(var(--process-tilt-y))
    translateY(calc(var(--process-shift) - var(--process-lift))) scale(var(--process-scale));
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.35s ease,
    border-color 0.35s ease, background-color 0.35s ease;
  transition-delay: var(--process-delay, 0s);
}

.process-card::after {
  content: "";
  position: absolute;
  inset: -30% -100%;
  background: linear-gradient(
    114deg,
    rgba(255, 255, 255, 0) 43%,
    rgba(255, 255, 255, 0.46) 50%,
    rgba(255, 255, 255, 0) 57%
  );
  transform: translateX(-74%);
  opacity: 0;
  pointer-events: none;
}

.process-roadmap.is-visible .process-card {
  --process-shift: 0px;
  --process-scale: 1;
  opacity: 1;
}

.process-card:hover,
.process-card:focus-within {
  --process-lift: 10px;
  --process-scale: 1.01;
  border-color: rgba(242, 195, 64, 0.34);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 34px rgba(22, 23, 26, 0.1);
}

.process-card:hover::after,
.process-card:focus-within::after {
  opacity: 1;
  animation: card-sheen 0.95s ease;
}

.process-icon {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #f8f8f8;
  display: grid;
  place-items: center;
  color: #1b1d22;
  transition: transform 0.32s ease, background-color 0.32s ease, color 0.32s ease;
}

.process-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-divider {
  margin: 36px 0 24px;
  border-top: 1px solid #d4d4d4;
  position: relative;
  overflow: hidden;
}

.process-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #121317;
}

.process-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.38s ease;
}

.process-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.28rem, 1.5vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.process-card p {
  margin: 24px 0 0;
  color: #5d6168;
  font-size: 0.96rem;
  line-height: 1.56;
  max-width: 260px;
}

.process-card:hover .process-icon,
.process-card:focus-within .process-icon {
  transform: rotate(-5deg) scale(1.04);
  background: #ece7de;
  color: var(--gold-deep);
}

.process-card:hover .process-divider::after,
.process-card:focus-within .process-divider::after {
  width: 100%;
}

.testimonials {
  background: #efefef;
  padding: 0 0 96px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 32px;
  align-items: stretch;
}

.testimonials-image,
.testimonials-panel {
  border-radius: 32px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.testimonials-image {
  min-height: 640px;
}

.testimonials-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-panel {
  position: relative;
  background: linear-gradient(145deg, #0f1013 0%, #121316 56%, #0d0e11 100%);
  color: #f5f5f5;
  padding: 84px 64px 112px;
  overflow: hidden;
}

.testimonials-panel::before {
  content: "";
  position: absolute;
  inset: -28% -24%;
  background: radial-gradient(circle at 75% 12%, rgba(242, 195, 64, 0.22), transparent 45%);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonials-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -68px;
  width: 410px;
  height: 246px;
  opacity: 0.16;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 44px 100%, 100% 34px;
}

.testimonials-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f0f0f0;
  font-size: 0.86rem;
  font-weight: 700;
}

.testimonials-panel h2 {
  margin: 22px 0 0;
  max-width: 440px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.12;
}

.testimonials-kicker,
.testimonials-panel h2,
.testimonials-stars,
.testimonials-quote,
.testimonial-person,
.testimonial-controls {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonials-quote-mark {
  position: absolute;
  top: 52px;
  right: 54px;
  margin: 0;
  font-size: clamp(7rem, 11vw, 10.5rem);
  line-height: 0.64;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Sora", sans-serif;
  pointer-events: none;
  animation: quote-float 4.6s ease-in-out infinite;
}

.testimonials-stars {
  margin: 56px 0 0;
  color: #F2C340;
  letter-spacing: 0.2em;
  font-size: 1.52rem;
  line-height: 1;
}

.testimonials-quote {
  margin: 28px 0 0;
  max-width: 94%;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.06rem, 1.18vw, 1.28rem);
  line-height: 1.7;
  color: #ececee;
  border: 0;
  padding: 0;
}

.testimonial-person {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-person img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-person h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  color: #ffffff;
}

.testimonial-person p {
  margin: 10px 0 0;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-controls {
  position: absolute;
  right: 56px;
  bottom: 52px;
  display: flex;
  gap: 14px;
  z-index: 2;
}

.testimonial-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.32rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease,
    transform 0.25s ease;
}

.testimonial-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.testimonial-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.testimonials.is-visible .testimonials-image,
.testimonials.is-visible .testimonials-panel {
  opacity: 1;
  transform: translateY(0);
}

.testimonials.is-visible .testimonials-panel {
  transition-delay: 0.08s;
}

.testimonials.is-visible .testimonials-image img {
  transform: scale(1);
}

.testimonials.is-visible .testimonials-panel::before {
  opacity: 1;
  transform: scale(1);
}

.testimonials.is-visible .testimonials-kicker,
.testimonials.is-visible .testimonials-panel h2,
.testimonials.is-visible .testimonials-stars,
.testimonials.is-visible .testimonials-quote,
.testimonials.is-visible .testimonial-person,
.testimonials.is-visible .testimonial-controls {
  opacity: 1;
  transform: translateY(0);
}

.testimonials.is-visible .testimonials-kicker {
  transition-delay: 0.12s;
}

.testimonials.is-visible .testimonials-panel h2 {
  transition-delay: 0.2s;
}

.testimonials.is-visible .testimonials-stars {
  transition-delay: 0.3s;
}

.testimonials.is-visible .testimonials-quote {
  transition-delay: 0.38s;
}

.testimonials.is-visible .testimonial-person {
  transition-delay: 0.47s;
}

.testimonials.is-visible .testimonial-controls {
  transition-delay: 0.54s;
}

.testimonials-panel.is-switching .testimonials-stars,
.testimonials-panel.is-switching .testimonials-quote,
.testimonials-panel.is-switching .testimonial-person {
  opacity: 0;
  transform: translateY(12px);
}

.testimonials-panel.is-switching .testimonial-person img {
  transform: scale(0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #efefef;
  padding: 0 0 34px;
}

.footer-shell {
  background: linear-gradient(145deg, #0f1013 0%, #121316 56%, #0d0e11 100%);
  border-radius: 34px;
  color: #f3f4f6;
  padding: 62px 52px 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.footer-shell::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -88px;
  width: 470px;
  height: 260px;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 46px 100%, 100% 34px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 34px;
  align-items: start;
}

.footer-newsletter h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.05vw, 2.9rem);
  line-height: 1.2;
  color: #f4f5f7;
  max-width: 560px;
}

.newsletter-area {
  display: grid;
  gap: 14px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  padding: 0 20px;
  height: 54px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 40px;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  background: var(--gold-deep);
}

.newsletter-agree {
  margin: 4px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.newsletter-agree input {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  accent-color: var(--gold);
}

.newsletter-agree a {
  color: #ffffff;
  text-underline-offset: 3px;
}

.footer-divider {
  margin: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) repeat(3, minmax(0, 1fr));
  gap: 34px 40px;
}

.footer-col h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.24rem, 1.55vw, 1.62rem);
  line-height: 1.2;
  color: #ffffff;
}

.footer-logo {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 14px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: clamp(100px, 10vw, 150px);
  height: auto;
  display: block;
  transform: scale(1.45);
  transform-origin: left top;
}

.footer-brand-col p {
  margin: 10px 0 0;
  color: rgba(240, 241, 244, 0.88);
  line-height: 1.68;
  font-size: 1.01rem;
  max-width: 380px;
}

.footer-consult-btn {
  margin-top: 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #111216;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 22px 10px 10px;
  transition: transform 0.2s ease;
}

.footer-consult-btn span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #ffffff;
}

.footer-consult-btn:hover {
  transform: translateY(-2px);
}

.footer-links {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(245, 246, 248, 0.92);
  font-size: 1rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-hours {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(245, 246, 248, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.footer-contact-link {
  margin-top: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.02rem, 1.22vw, 1.24rem);
  line-height: 1.2;
}

.footer-contact-link span {
  font-size: 1.2rem;
}

.footer-contact-spacer {
  margin-top: 26px;
}

.footer-email {
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 246, 248, 0.88);
  font-size: 0.96rem;
}

.footer-bottom p a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 195, 64, 0.7);
  color: #F2C340;
}

.footer-newsletter > *,
.footer-main .footer-col,
.footer-bottom {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.site-footer.is-visible .footer-shell {
  opacity: 1;
  transform: translateY(0);
}

.site-footer.is-visible .footer-newsletter > *,
.site-footer.is-visible .footer-main .footer-col,
.site-footer.is-visible .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

.site-footer.is-visible .footer-newsletter h2 {
  transition-delay: 0.1s;
}

.site-footer.is-visible .newsletter-area {
  transition-delay: 0.18s;
}

.site-footer.is-visible .footer-main .footer-col:nth-child(1) {
  transition-delay: 0.24s;
}

.site-footer.is-visible .footer-main .footer-col:nth-child(2) {
  transition-delay: 0.3s;
}

.site-footer.is-visible .footer-main .footer-col:nth-child(3) {
  transition-delay: 0.36s;
}

.site-footer.is-visible .footer-main .footer-col:nth-child(4) {
  transition-delay: 0.42s;
}

.site-footer.is-visible .footer-bottom {
  transition-delay: 0.48s;
}

@keyframes card-sheen {
  from {
    transform: translateX(-72%);
  }
  to {
    transform: translateX(72%);
  }
}

@keyframes quote-float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes reveal {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-icon,
  .service-divider::after,
  .service-card::before,
  .about-visual,
  .about-content,
  .about-tab,
  .about-cta,
  .testimonials-image,
  .testimonials-image img,
  .testimonials-panel,
  .testimonials-panel::before,
  .testimonials-kicker,
  .testimonials-panel h2,
  .testimonials-quote-mark,
  .testimonials-stars,
  .testimonials-quote,
  .testimonial-person,
  .testimonial-person img,
  .testimonial-controls,
  .testimonials-quote,
  .testimonial-arrow,
  .footer-shell,
  .footer-newsletter > *,
  .footer-main .footer-col,
  .footer-bottom,
  .newsletter-form button,
  .footer-consult-btn,
  .footer-social a,
  .path-track,
  .path-card,
  .path-arrow,
  .process-track,
  .process-card,
  .process-card::after,
  .process-icon,
  .process-divider::after,
  .process-arrow {
    animation: none !important;
    transition: none !important;
  }

  .service-card,
  .services-preview.is-visible .service-card,
  .service-card:hover,
  .service-card:focus-within,
  .about-visual,
  .about-content,
  .about-highlight.is-visible .about-visual,
  .about-highlight.is-visible .about-content,
  .path-card,
  .path-showcase.is-visible .path-card,
  .testimonials-image,
  .testimonials-panel,
  .testimonials.is-visible .testimonials-image,
  .testimonials.is-visible .testimonials-panel,
  .testimonials.is-visible .testimonials-kicker,
  .testimonials.is-visible .testimonials-panel h2,
  .testimonials.is-visible .testimonials-stars,
  .testimonials.is-visible .testimonials-quote,
  .testimonials.is-visible .testimonial-person,
  .testimonials.is-visible .testimonial-controls,
  .testimonials-panel.is-switching .testimonials-stars,
  .testimonials-panel.is-switching .testimonials-quote,
  .testimonials-panel.is-switching .testimonial-person,
  .site-footer.is-visible .footer-shell,
  .site-footer.is-visible .footer-newsletter > *,
  .site-footer.is-visible .footer-main .footer-col,
  .site-footer.is-visible .footer-bottom,
  .process-card,
  .process-roadmap.is-visible .process-card {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .desktop-only {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 540px;
  }

  .about-content::after {
    width: 260px;
    height: 180px;
    right: -40px;
    bottom: -74px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-image {
    min-height: 500px;
  }

  .testimonials-panel {
    padding: 66px 42px 100px;
  }

  .footer-shell {
    padding: 50px 34px 20px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 30px;
  }

  .footer-bottom {
    margin-top: 38px;
  }

  .testimonials-quote-mark {
    top: 34px;
    right: 34px;
  }

  .path-shell {
    padding: 78px 42px 72px;
  }

  .path-arrow-prev {
    left: -26px;
  }

  .path-arrow-next {
    right: -26px;
  }

  .path-card {
    flex-basis: calc((100% - 28px) / 2);
    padding-inline: 24px;
  }

  .process-heading h2 {
    max-width: 620px;
  }

  .process-card {
    flex-basis: calc((100% - 26px) / 2);
  }

  .process-card h3 {
    font-size: clamp(1.22rem, 2.1vw, 1.5rem);
  }

  .process-card p {
    font-size: 0.92rem;
  }

  .main-nav {
    gap: 20px;
  }

  .header-cta {
    gap: 8px;
  }

  .call-chip {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    position: relative;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(280px, calc(100vw - 24px));
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
    z-index: 120;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out,
      transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .main-nav.is-open {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid #efefef;
    background: #ffffff;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 112px 40px;
  }

  .service-card {
    min-height: 304px;
    padding: 34px 30px;
  }

  .service-icon {
    width: 84px;
    height: 84px;
  }

  .service-card h3 {
    font-size: clamp(1.28rem, 3.2vw, 1.55rem);
  }

  .about-content h2 {
    font-size: clamp(1.9rem, 4.6vw, 2.75rem);
  }

  .about-details {
    grid-template-columns: minmax(0, 310px) minmax(0, 1fr);
  }

  .path-shell {
    border-radius: 28px;
  }

  .path-arrow {
    width: 48px;
    height: 48px;
  }

  .path-arrow-prev {
    left: 10px;
  }

  .path-arrow-next {
    right: 10px;
  }

  .process-head {
    flex-direction: column;
  }

  .process-controls {
    padding-top: 0;
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 24px);
    --hero-radius: 18px;
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 88px;
  }

  .logo {
    font-size: 1.45rem;
    min-height: 56px;
  }

  .logo-image {
    width: auto;
    height: 66px;
    max-width: 330px;
    object-fit: contain;
    transform: scale(2.85);
    transform-origin: left center;
  }

  .quote-chip {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 92px 22px;
  }

  .hero p {
    line-height: 1.55;
  }

  .hero-dots {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .services-preview {
    padding: 36px 0 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    border-radius: 24px;
    padding: 30px 20px;
  }

  .service-top {
    gap: 16px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
  }

  .service-icon svg {
    width: 44px;
    height: 44px;
  }

  .service-divider {
    margin: 22px 0;
  }

  .about-highlight {
    padding: 40px 0 46px;
  }

  .testimonials {
    padding: 0 0 54px;
  }

  .site-footer {
    padding: 0 0 18px;
  }

  .footer-shell {
    border-radius: 22px;
    padding: 36px 18px 16px;
  }

  .footer-newsletter h2 {
    font-size: clamp(1.64rem, 7.3vw, 2.14rem);
    line-height: 1.2;
  }

  .newsletter-form {
    border-radius: 20px;
    padding: 10px;
    display: grid;
    gap: 10px;
  }

  .newsletter-form input {
    height: 48px;
    padding: 0 12px;
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
  }

  .newsletter-form button {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
  }

  .newsletter-agree {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-divider {
    margin: 30px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo img {
    width: clamp(80px, 28vw, 120px);
    height: auto;
    transform: scale(1.4);
    transform-origin: left top;
  }

  .footer-brand-col p {
    margin-top: 10px;
    font-size: 0.94rem;
    max-width: 100%;
  }

  .footer-consult-btn {
    margin-top: 20px;
    font-size: 0.86rem;
  }

  .footer-consult-btn span {
    width: 34px;
    height: 34px;
  }

  .footer-col h3 {
    font-size: 1.18rem;
  }

  .footer-links,
  .footer-hours {
    margin-top: 14px;
    gap: 12px;
  }

  .footer-links a,
  .footer-hours,
  .footer-contact-label {
    font-size: 0.9rem;
  }

  .footer-contact-link,
  .footer-email {
    font-size: 0.98rem;
  }

  .footer-contact-link span {
    font-size: 0.92rem;
  }

  .footer-contact-spacer {
    margin-top: 18px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.88rem;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.58rem;
  }

  .footer-social a svg {
    width: 16px;
    height: 16px;
  }

  .testimonials-grid {
    gap: 18px;
  }

  .testimonials-image,
  .testimonials-panel {
    border-radius: 22px;
  }

  .testimonials-image {
    min-height: 320px;
  }

  .testimonials-panel {
    padding: 40px 18px 86px;
  }

  .testimonials-kicker {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .testimonials-panel h2 {
    margin-top: 14px;
    font-size: clamp(1.72rem, 8vw, 2.3rem);
  }

  .testimonials-quote-mark {
    top: 26px;
    right: 14px;
    font-size: 5.5rem;
  }

  .testimonials-stars {
    margin-top: 34px;
    font-size: 1.24rem;
    letter-spacing: 0.16em;
  }

  .testimonials-quote {
    margin-top: 18px;
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .testimonial-person {
    margin-top: 20px;
    gap: 12px;
  }

  .testimonial-person img {
    width: 64px;
    height: 64px;
  }

  .testimonial-person h3 {
    font-size: 1.32rem;
  }

  .testimonial-person p {
    margin-top: 6px;
    font-size: 0.92rem;
  }

  .testimonial-controls {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .testimonial-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.12rem;
  }

  .path-showcase {
    padding: 12px 0 46px;
  }

  .path-shell {
    padding: 52px 14px 44px;
    border-radius: 22px;
  }

  .path-shell h2 {
    margin-top: 14px;
    font-size: clamp(1.62rem, 8vw, 2rem);
  }

  .path-slider {
    margin-top: 30px;
  }

  .path-track {
    gap: 14px;
  }

  .path-card {
    flex-basis: 100%;
    border-radius: 16px;
    padding: 8px 16px 20px;
  }

  .path-media {
    border-radius: 14px;
    padding: 8px;
  }

  .path-media img {
    border-radius: 10px;
  }

  .path-icon {
    width: 58px;
    height: 58px;
    right: 12px;
    bottom: -20px;
  }

  .path-icon svg {
    width: 32px;
    height: 32px;
  }

  .path-card h3 {
    margin-top: 22px;
    font-size: 1.24rem;
  }

  .path-card p {
    font-size: 0.88rem;
  }

  .path-link {
    font-size: 0.88rem;
  }

  .path-link span {
    width: 28px;
    height: 28px;
  }

  .path-arrow {
    top: auto;
    bottom: -4px;
    transform: none;
    border-color: rgba(242, 195, 64, 0.65);
    background: linear-gradient(145deg, #1b1d22, #13151a);
    color: #f2c340;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  }

  .path-arrow:hover:not(:disabled) {
    border-color: rgba(242, 195, 64, 0.95);
    background: linear-gradient(145deg, #23262d, #181b21);
    color: #ffd86d;
  }

  .path-arrow:disabled {
    opacity: 0.48;
    border-color: rgba(150, 150, 150, 0.55);
    color: rgba(220, 220, 220, 0.92);
  }

  .path-arrow-prev {
    left: calc(50% - 56px);
  }

  .path-arrow-next {
    right: calc(50% - 56px);
  }

  .path-shell::after {
    display: none;
  }

  .process-roadmap {
    padding: 6px 0 56px;
  }

  .process-heading h2 {
    margin-top: 14px;
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    max-width: 420px;
  }

  .process-viewport {
    margin-top: 26px;
  }

  .process-track {
    gap: 14px;
  }

  .process-card {
    flex-basis: 100%;
  }

  .process-icon {
    width: 98px;
    height: 98px;
  }

  .process-icon svg {
    width: 48px;
    height: 48px;
  }

  .process-divider {
    margin: 24px 0 18px;
  }

  .process-card h3 {
    font-size: 1.38rem;
  }

  .process-card p {
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .process-controls {
    gap: 10px;
  }

  .process-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .about-shell {
    gap: 24px;
  }

  .about-visual {
    min-height: 420px;
    border-radius: 18px;
  }

  .about-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .about-badge strong {
    font-size: 2.2rem;
  }

  .about-badge span {
    margin-top: 8px;
    font-size: 0.88rem;
  }

  .about-content h2 {
    margin-top: 14px;
    line-height: 1.18;
  }

  .about-tabs {
    margin-top: 24px;
    gap: 10px;
  }

  .about-tab {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .about-details {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-details img {
    max-width: 260px;
  }

  .about-copy p {
    font-size: 0.95rem;
  }

  .about-points {
    margin-top: 16px;
    gap: 10px;
  }

  .about-points li {
    font-size: 0.92rem;
  }

  .about-cta {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .about-cta span {
    width: 38px;
    height: 38px;
  }

  .about-content::after {
    display: none;
  }
}
