@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --cream: #fff4e8;
  --cream-2: #ffe8d1;
  --orange: #ff6a2a;
  --orange-2: #ff935f;
  --orange-3: #ffc59d;
  --black: #101010;
  --muted: #655f59;
  --white: #fffdf9;
  --line: rgba(16, 16, 16, 0.16);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --shadow: 0 30px 80px rgba(79, 38, 13, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 105px;
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.95), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(255,147,95,.24), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #fff8ef 48%, var(--cream-2) 100%);
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.display {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 800;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.lead {
  max-width: 630px;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  color: var(--muted);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
}

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 72px;
  padding: 10px 12px 10px 20px;
  background: rgba(255, 250, 243, .82);
  border: 1px solid rgba(16, 16, 16, .12);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(60, 25, 2, .08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.04em;
}

.logo-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--black);
  overflow: hidden;
  transform: rotate(-7deg);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: var(--orange);
}

.logo-mark::before {
  width: 26px;
  height: 8px;
  top: 7px;
  left: 4px;
  transform: rotate(-22deg);
}

.logo-mark::after {
  width: 26px;
  height: 8px;
  bottom: 7px;
  right: 4px;
  transform: rotate(-22deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--black);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.btn-light {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}

.btn-light:hover {
  background: var(--white);
  border-color: var(--black);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--black);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 70px;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -25vw;
  bottom: -25vw;
  border: 1px solid rgba(16,16,16,.09);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: center;
}

.hero-copy p {
  margin-top: 28px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  margin-left: -9px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--orange));
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  height: 570px;
  perspective: 1200px;
}

.orbit-shell {
  position: absolute;
  inset: 10px 0 0;
  transform-style: preserve-3d;
  animation: floatScene 7s ease-in-out infinite;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%) rotate(-10deg);
  border-radius: 38% 62% 58% 42% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 30% 28%, #fff 0 5%, transparent 6%),
    radial-gradient(circle at 38% 35%, #ffb786 0, #ff6a2a 55%, #131313 100%);
  box-shadow:
    inset -40px -35px 80px rgba(0,0,0,.28),
    inset 25px 22px 70px rgba(255,255,255,.5),
    0 70px 110px rgba(108, 41, 2, .24);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 180px;
  border: 12px solid var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg) rotateX(67deg);
  box-shadow: 0 30px 50px rgba(0,0,0,.13);
}

.orbit-ring::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: inherit;
  border: 2px solid var(--orange);
}

.float-card {
  position: absolute;
  padding: 18px;
  background: rgba(255, 253, 249, .9);
  border: 1px solid rgba(16,16,16,.14);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(54, 23, 4, .12);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
}

.float-card strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -.05em;
}

.float-card span {
  font-size: 12px;
  color: var(--muted);
}

.card-one { top: 40px; left: 0; transform: rotate(-8deg) translateZ(55px); }
.card-two { right: -5px; top: 185px; transform: rotate(7deg) translateZ(80px); }
.card-three { left: 48px; bottom: 35px; transform: rotate(4deg) translateZ(40px); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 800;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: var(--black);
  animation: pulseLine 1.8s ease-in-out infinite;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding-right: 40px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.marquee-track i {
  color: var(--orange);
  font-style: normal;
  margin-left: 36px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}

.section-head .lead {
  max-width: 470px;
}

.services-section {
  overflow: clip;
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 22px;
  align-items: start;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding .3s ease;
}

.service-row.active {
  padding: 8px 18px 22px;
  border: 1px solid var(--black);
  border-radius: 24px;
  background: rgba(255,253,249,.74);
  box-shadow: 0 18px 45px rgba(64, 29, 8, .08);
}

.service-row.active + .service-row {
  border-top-color: transparent;
}

.service-trigger {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.service-number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-name {
  display: grid;
  gap: 4px;
}

.service-name small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-name strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.service-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.service-row:hover .service-arrow,
.service-row.active .service-arrow {
  transform: rotate(45deg);
  background: var(--orange);
  border-color: var(--orange);
}

.service-details {
  max-height: 0;
  padding: 0 56px 0 62px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .45s ease, opacity .3s ease, transform .3s ease, padding .3s ease;
}

.service-row.active .service-details {
  max-height: 230px;
  padding-bottom: 4px;
  opacity: 1;
  transform: translateY(0);
}

.service-details p {
  max-width: 650px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

.service-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.service-preview {
  position: sticky;
  top: 112px;
  min-height: 610px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--black);
  border-radius: 34px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(48, 20, 3, .18);
  transform-style: preserve-3d;
  transition: transform .25s ease;
}

.preview-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.preview-top,
.preview-copy {
  position: relative;
  z-index: 2;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.preview-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 15px;
  color: var(--orange);
  font-size: 23px;
}

.preview-orb {
  position: absolute;
  inset: 80px 20px auto;
  height: 310px;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.preview-orb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%);
  border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%;
  background: radial-gradient(circle at 34% 26%, #fff 0 4%, #ffb07a 10%, var(--orange) 52%, #1d1d1d 100%);
  box-shadow: inset -30px -30px 60px rgba(0,0,0,.38), 0 40px 80px rgba(255,106,42,.25);
  animation: serviceMorph 8s ease-in-out infinite;
}

.preview-orb span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-12deg);
}

.preview-orb span:nth-child(1) { width: 330px; height: 150px; }
.preview-orb span:nth-child(2) { width: 275px; height: 120px; transform: translate(-50%, -50%) rotateX(68deg) rotateZ(48deg); border-color: rgba(255,106,42,.85); }
.preview-orb span:nth-child(3) { width: 210px; height: 90px; transform: translate(-50%, -50%) rotateX(68deg) rotateZ(105deg); }

.preview-copy {
  padding-top: 350px;
}

.preview-category {
  display: block;
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.preview-copy h3 {
  margin-top: 10px;
  max-width: 430px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.preview-copy p {
  margin-top: 15px;
  color: rgba(255,255,255,.64);
  font-size: .94rem;
  line-height: 1.65;
}

.preview-copy a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.preview-copy a span {
  color: var(--orange);
}

.service-preview.is-changing .preview-copy,
.service-preview.is-changing .preview-top {
  animation: previewSwap .35s ease;
}


.approach {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.approach::before {
  content: "";
  position: absolute;
  inset: auto auto -160px -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,42,.4), transparent 68%);
}

.approach-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 125px;
}

.approach-copy .lead {
  margin-top: 28px;
  color: rgba(255,255,255,.62);
}

.steps {
  display: grid;
  gap: 18px;
  perspective: 1000px;
}

.step {
  min-height: 220px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  transform-origin: top center;
}

.step:nth-child(2) { transform: translateX(28px); }
.step:nth-child(3) { transform: translateX(56px); }
.step:nth-child(4) { transform: translateX(84px); }

.step b {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: .16em;
}

.step h3 {
  margin-top: 28px;
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  letter-spacing: -.045em;
}

.step p {
  margin-top: 14px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

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

.metric {
  padding: 44px 24px;
  border-right: 1px solid var(--line);
}

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

.metric strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: .9;
  letter-spacing: -.07em;
}

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

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

.industry-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--orange-3);
  border: 1px solid var(--line);
}

.industry-card:nth-child(2) { background: var(--black); color: var(--white); }
.industry-card:nth-child(3) { background: var(--orange); }

.industry-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -80px;
  right: -60px;
  border: 22px solid rgba(255,255,255,.36);
  border-radius: 50%;
  transition: transform .35s ease;
}

.industry-card:hover::after { transform: scale(1.18) rotate(22deg); }

.industry-card h3 {
  max-width: 250px;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.industry-card p {
  max-width: 300px;
  color: inherit;
  opacity: .72;
  line-height: 1.65;
}

.cta-panel {
  position: relative;
  min-height: 520px;
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--orange);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(16,16,16,.2);
}

.cta-panel::before {
  width: 430px;
  height: 430px;
  right: -110px;
  top: -170px;
}

.cta-panel::after {
  width: 240px;
  height: 240px;
  right: 80px;
  top: -60px;
}

.cta-panel .section-title {
  position: relative;
  max-width: 820px;
  z-index: 2;
}

.cta-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.site-footer {
  padding: 40px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--muted);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* Inner pages */
.inner-hero {
  padding: 180px 0 80px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 80px;
  align-items: end;
}

.inner-hero .display {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.inner-badge {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-md);
  background: var(--orange);
  transform: rotate(3deg);
  box-shadow: var(--shadow);
}

.inner-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.contact-section {
  padding: 40px 0 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info,
.contact-form-wrap,
.policy-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,249,.7);
  box-shadow: 0 24px 70px rgba(83, 42, 16, .08);
}

.contact-info {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.contact-list {
  margin-top: 60px;
  display: grid;
  gap: 22px;
}

.contact-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-item a,
.contact-item p {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-form-wrap {
  padding: 38px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 9px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.55);
  color: var(--black);
  padding: 16px 17px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,42,.12);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-response {
  display: none;
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 14px;
  background: #dff8e6;
  color: #174526;
  font-weight: 700;
}

.form-response.show { display: block; }

.policy-section {
  padding: 25px 0 130px;
}

.policy-wrap {
  padding: clamp(28px, 6vw, 72px);
}

.policy-wrap .updated {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 36px;
  border-radius: 99px;
  background: var(--orange-3);
  font-size: 13px;
  font-weight: 800;
}

.policy-block + .policy-block {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.policy-block h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
}

.policy-block p,
.policy-block li {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.policy-block ul {
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(50px) rotateX(5deg);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}

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

@keyframes floatScene {
  0%, 100% { transform: translateY(0) rotateY(-3deg); }
  50% { transform: translateY(-18px) rotateY(4deg); }
}

@keyframes pulseLine {
  0%, 100% { transform: scaleY(.3); transform-origin: top; opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes serviceMorph {
  0%, 100% { border-radius: 42% 58% 62% 38% / 38% 44% 56% 62%; transform: translate(-50%, -50%) rotate(-5deg); }
  50% { border-radius: 58% 42% 38% 62% / 55% 38% 62% 45%; transform: translate(-50%, -50%) rotate(8deg) scale(1.04); }
}

@keyframes previewSwap {
  0% { opacity: .35; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .menu-toggle { display: block; }

  .hero-grid,
  .approach-grid,
  .inner-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 130px; }
  .hero-visual { height: 500px; }
  .approach-copy { position: static; }
  .step:nth-child(n) { transform: none; }

  .service-explorer {
    grid-template-columns: 1fr;
  }
  .service-preview {
    position: relative;
    top: auto;
    min-height: 560px;
  }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .industries-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-header { top: 10px; padding: 0 12px; }
  .navbar { min-height: 64px; padding-left: 15px; }
  .logo { font-size: 18px; }
  .logo-mark { width: 30px; height: 30px; }

  .hero { min-height: auto; padding: 120px 0 85px; }
  .display { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-grid { gap: 30px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; }
  .hero-visual { height: 410px; }
  .orbit-core { width: 230px; height: 230px; }
  .orbit-ring { width: 340px; height: 130px; border-width: 9px; }
  .float-card { padding: 12px; }
  .float-card strong { font-size: 1rem; }
  .card-one { left: 5px; top: 35px; }
  .card-two { right: 0; top: 165px; }
  .card-three { left: 30px; bottom: 24px; }
  .scroll-cue { display: none; }

  .section { padding: 90px 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .service-row.active { padding: 6px 12px 18px; border-radius: 20px; }
  .service-trigger { min-height: 78px; grid-template-columns: 34px minmax(0, 1fr) 36px; gap: 10px; }
  .service-name strong { font-size: 1.18rem; }
  .service-details { padding-left: 44px; padding-right: 8px; }
  .service-row.active .service-details { max-height: 280px; }
  .service-preview { display: none; }
  .preview-orb { inset: 75px 5px auto; height: 270px; }
  .preview-orb::before { width: 195px; height: 195px; }
  .preview-orb span:nth-child(1) { width: 280px; }
  .preview-orb span:nth-child(2) { width: 235px; }
  .preview-orb span:nth-child(3) { width: 185px; }
  .preview-copy { padding-top: 315px; }
  .preview-copy h3 { font-size: 2rem; }

  .metrics-grid { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }

  .cta-panel { min-height: 500px; padding: 34px 24px; border-radius: 28px; }
  .cta-bottom { align-items: flex-start; flex-direction: column; }
  .cta-bottom .btn { width: auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }

  .inner-hero { padding: 135px 0 60px; }
  .inner-hero-grid { gap: 35px; }
  .inner-badge { min-height: 230px; }
  .contact-section { padding-bottom: 90px; }
  .contact-info,
  .contact-form-wrap { padding: 25px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .policy-section { padding-bottom: 90px; }
}

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