:root {
  --navy: #102050;
  --ocean: #045b8f;
  --cyan: #0098d0;
  --ice: #f3f8fc;
  --steel: #60748a;
  --white: #ffffff;
  --ink: #15223a;
  --line: rgba(16, 32, 80, 0.14);
  --route: linear-gradient(135deg, #102050 0%, #045b8f 52%, #0098d0 100%);
  --shadow: 0 18px 60px rgba(16, 32, 80, 0.12);
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --shell: 1180px;
  --header-height: 82px;
  --font-display: "Sora", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--ocean);
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-small);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(16, 32, 80, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  width: 166px;
  height: 66px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 166px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 2px;
  background: var(--route);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 180ms ease;
}

.menu-toggle span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 15px;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(16, 32, 80, 0.18);
}

.button-primary:hover {
  background: var(--ocean);
  box-shadow: 0 16px 36px rgba(4, 91, 143, 0.22);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(16, 32, 80, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  border-color: var(--ocean);
  background: var(--white);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  background: var(--ice);
}

.hero {
  position: relative;
  min-height: 800px;
  padding: calc(var(--header-height) + 76px) 0 106px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(243, 248, 252, 0.56) 0, rgba(255, 255, 255, 0) 44%),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% auto auto -9%;
  z-index: -2;
  width: 36vw;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 32, 80, 0.08);
  border-radius: 50%;
}

.hero-route {
  position: absolute;
  inset: 10% 0 -4%;
  z-index: -1;
  pointer-events: none;
}

.hero-route svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-shadow,
.route-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-shadow {
  stroke: rgba(16, 32, 80, 0.08);
  stroke-width: 24;
}

.route-path {
  stroke: url(#route-gradient);
  stroke-width: 9;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw-route 1.55s cubic-bezier(0.65, 0, 0.35, 1) 240ms forwards;
}

@keyframes draw-route {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--ocean);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--cyan);
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(50px, 5.15vw, 76px);
}

.hero h1 span {
  display: block;
  color: var(--ocean);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #43566d;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.5;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--steel);
  font-size: 15px;
  font-weight: 600;
}

.hero-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 152, 208, 0.12);
}

.hero-visual {
  transform: translateY(12px);
}

.brand-panel {
  position: relative;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 80, 0.1);
  border-radius: var(--radius-large) var(--radius-large) 90px var(--radius-large);
  background: var(--ice);
  box-shadow: var(--shadow);
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(16, 32, 80, 0.09);
  border-radius: 14px 14px 72px 14px;
  pointer-events: none;
}

.brand-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.brand-panel-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 25px 30px 28px;
  color: var(--white);
  background: var(--navy);
}

.brand-panel-caption span {
  display: block;
  margin-bottom: 6px;
  color: #b9e9f9;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-panel-caption strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}

.context-strip {
  color: var(--white);
  background: var(--navy);
}

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

.context-grid p {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 14px;
  margin: 0;
  padding: 18px clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
  font-weight: 600;
}

.context-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.context-grid p span {
  color: #92dcf4;
  font-family: var(--font-mono);
  font-size: 12px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 116px);
  margin-bottom: 64px;
}

.section-heading h2,
.experience h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--steel);
  font-size: 19px;
}

.services {
  background: var(--white);
}

.service-lanes {
  border-bottom: 1px solid var(--line);
}

.service-lane {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(200px, 0.72fr) minmax(280px, 1fr) 110px;
  align-items: center;
  gap: 28px;
  min-height: 174px;
  padding: 28px 22px 28px 0;
  border-top: 1px solid var(--line);
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.service-lane::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--route);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.service-lane:hover {
  padding-left: 22px;
  background: var(--ice);
}

.service-lane:hover::before {
  transform: scaleY(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--ocean);
  border: 1px solid rgba(4, 91, 143, 0.22);
  border-radius: 50%;
  background: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-name span {
  display: block;
  margin-bottom: 8px;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-name h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.25vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-lane > p {
  max-width: 520px;
  margin: 0;
  color: #465a71;
  font-size: 18px;
}

.service-action {
  justify-self: end;
  color: var(--ocean);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  color: var(--ocean);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  font-size: 21px;
}

.experience {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(56px, 9vw, 130px);
}

.section-kicker-light {
  color: #93dcf4;
}

.experience h2,
.contact h2 {
  color: var(--white);
}

.experience-summary {
  padding: 6px 0 8px 28px;
  border-left: 2px solid var(--cyan);
}

.experience-summary p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.experience-summary span,
.practice-label,
.practice-verb {
  color: #92dcf4;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.practice-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.practice-lead {
  padding: 44px 58px 44px 0;
}

.practice-lead h3 {
  max-width: 420px;
  margin: 18px 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.practice-lead > p:not(.practice-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.practice-list {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.practice-item {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 30px;
  padding: 32px 0 32px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.practice-item:last-child {
  border-bottom: 0;
}

.practice-item h3 {
  margin: -5px 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.practice-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.skills-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 42px;
  margin-top: 86px;
  padding: 34px 38px;
  color: var(--navy);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.skills-group > p {
  margin: 0 0 16px;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skills-group-development {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--ocean);
  border: 1px solid rgba(4, 91, 143, 0.16);
  border-radius: var(--radius-small);
  background: var(--ice);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-transform: uppercase;
}

.process {
  background: var(--ice);
}

.process-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-route::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 8%;
  left: 8%;
  height: 6px;
  border-radius: 999px;
  background: var(--route);
}

.process-route li {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ocean);
  border: 6px solid var(--ice);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(16, 32, 80, 0.12);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.process-route li:nth-child(2) .process-number,
.process-route li:nth-child(3) .process-number {
  left: calc(50% - 29px);
}

.process-route li:last-child .process-number {
  right: 0;
  left: auto;
}

.process-route h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.process-route p {
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.process-route li:nth-child(2),
.process-route li:nth-child(3) {
  text-align: center;
}

.process-route li:last-child {
  text-align: right;
}

.contact {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ocean);
}

.contact::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -70%;
  width: 38vw;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: clamp(54px, 9vw, 130px);
}

.contact h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.3vw, 62px);
}

.contact-copy p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--navy);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 188px;
  margin: -20px 0 -16px;
}

.footer-brand p {
  max-width: 350px;
  margin: 0;
  color: var(--steel);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 4px;
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
}

.footer-bottom p:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--ocean);
  box-shadow: 0 12px 32px rgba(16, 32, 80, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease, visibility 180ms;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 1080px) {
  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 40px;
  }

  .service-lane {
    grid-template-columns: 64px minmax(190px, 0.72fr) minmax(260px, 1fr);
  }

  .service-action {
    display: none;
  }

  .practice-lead {
    padding-right: 40px;
  }

  .practice-item {
    grid-template-columns: 130px 1fr;
    gap: 22px;
    padding-left: 36px;
  }

  .skills-panel {
    grid-template-columns: 1fr;
  }

  .skills-group-development {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 22px 24px 30px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 40px rgba(16, 32, 80, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

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

  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    padding-block: 8px 18px;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    display: grid;
    width: 100%;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .no-js .hero {
    padding-top: 58px;
  }

  .site-nav > a:not(.button) {
    min-height: 52px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
  }

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

  .hero-copy {
    max-width: 730px;
  }

  .hero-visual {
    width: min(680px, 94%);
    margin-left: auto;
  }

  .hero-route {
    inset: 28% -40% 0;
  }

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

  .context-grid p {
    min-height: 62px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .context-grid p:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .experience-intro,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .service-lane {
    grid-template-columns: 64px 1fr;
    gap: 8px 22px;
    padding: 26px 0;
  }

  .service-lane:hover {
    padding-left: 16px;
  }

  .service-lane > p {
    grid-column: 2;
  }

  .experience-intro {
    gap: 32px;
  }

  .experience-summary {
    max-width: 720px;
  }

  .practice-board {
    grid-template-columns: 1fr;
  }

  .practice-lead {
    padding: 42px 0;
  }

  .practice-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .practice-item {
    padding-left: 0;
  }

  .process-route {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 56px;
  }

  .process-route::before {
    display: none;
  }

  .process-route li,
  .process-route li:nth-child(2),
  .process-route li:nth-child(3),
  .process-route li:last-child {
    padding: 72px 0 0;
    text-align: left;
  }

  .process-route li:nth-child(2) .process-number,
  .process-route li:nth-child(3) .process-number,
  .process-route li:last-child .process-number {
    right: auto;
    left: 0;
  }

  .contact-copy {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .brand {
    width: 142px;
    height: 58px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 52px);
    letter-spacing: -0.05em;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 19px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
  }

  .brand-panel {
    border-radius: 22px 22px 62px 22px;
  }

  .brand-panel::before {
    inset: 12px;
    border-radius: 12px 12px 52px 12px;
  }

  .brand-panel-caption {
    padding: 20px 22px 22px;
  }

  .context-grid p {
    padding-inline: 16px;
    font-size: 15px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .experience h2,
  .contact h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .section-heading > p {
    font-size: 18px;
  }

  .service-lane {
    grid-template-columns: 54px 1fr;
    gap: 8px 16px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon svg {
    width: 27px;
    height: 27px;
  }

  .service-name h3 {
    font-size: 25px;
  }

  .service-lane > p {
    font-size: 17px;
  }

  .section-action {
    justify-content: flex-start;
  }

  .experience-intro {
    gap: 26px;
  }

  .experience-summary {
    padding-left: 20px;
  }

  .experience-summary p {
    font-size: 18px;
  }

  .practice-board {
    margin-top: 50px;
  }

  .practice-lead {
    padding: 34px 0;
  }

  .practice-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .practice-item h3 {
    margin-top: 0;
  }

  .skills-panel {
    margin-top: 58px;
    padding: 26px 22px;
  }

  .process-route {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-route::before {
    display: block;
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 23px;
    width: 5px;
    height: auto;
  }

  .process-route li,
  .process-route li:nth-child(2),
  .process-route li:nth-child(3),
  .process-route li:last-child {
    min-height: 108px;
    padding: 0 0 0 78px;
  }

  .process-number,
  .process-route li:nth-child(2) .process-number,
  .process-route li:nth-child(3) .process-number,
  .process-route li:last-child .process-number {
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-width: 5px;
  }

  .contact {
    padding: 78px 0;
  }

  .contact-inner {
    gap: 38px;
  }

  .contact-copy .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .route-path {
    stroke-dashoffset: 0;
  }
}
