﻿:root {
  --green: #178a45;
  --green-dark: #0b5f34;
  --ink: #101522;
  --text: #344054;
  --muted: #667085;
  --line: #d7dee8;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --accent: #246b84;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(16, 21, 34, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
}

.brand img {
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-wordmark {
  width: 118px;
  max-height: 30px;
  object-fit: contain;
}

.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  font-weight: 750;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 16px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.menu-open .main-nav a:hover,
.site-header.menu-open .main-nav a:focus-visible {
  background: #edf4f0;
}

.nav-featured {
  color: #ffffff;
  background: var(--green);
}

.site-header.is-scrolled .nav-featured,
.site-header.menu-open .nav-featured {
  color: #ffffff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  z-index: 31;
}

.language-button,
.menu-button {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(16, 21, 34, 0.14);
}

.site-header.is-scrolled .language-button,
.site-header.menu-open .language-button,
.site-header.is-scrolled .menu-button,
.site-header.menu-open .menu-button {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 10px 22px rgba(16, 21, 34, 0.08);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.language-button:hover,
.language-button:focus-visible,
.menu-button:hover,
.menu-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 72px;
  padding: 6px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(16, 21, 34, 0.18);
}

.language-menu button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: #edf4f0;
  outline: none;
}

.menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 44px;
  border-radius: 999px;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 5vw, 70px) 52px;
  color: #ffffff;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.84) 0%, rgba(7, 12, 18, 0.58) 42%, rgba(7, 12, 18, 0.18) 100%),
    rgba(16, 21, 34, 0.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta .eyebrow {
  color: #8ef0ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.92;
  font-weight: 950;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 950;
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 900;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 70px);
  bottom: 52px;
  display: grid;
  gap: 4px;
  width: min(340px, 32vw);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 18px;
  background: rgba(9, 14, 20, 0.34);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  color: #8ef0ad;
  font-weight: 900;
}

.hero-panel strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.section-band {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 70px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-grid p:last-child,
.section-heading p {
  color: var(--muted);
  font-size: 1.13rem;
}

/* Kinetic intro animation */
.intro {
  overflow: hidden;
}

.intro-statement {
  max-width: 760px;
}

.intro-type-title,
.intro-slide-copy {
  text-wrap: balance;
}

.kinetic-word {
  display: inline-block;
  white-space: nowrap;
}

.kinetic-char {
  display: inline-block;
  will-change: opacity, transform;
}

.intro-type-title .kinetic-char {
  opacity: 0;
  transform: translateY(0.08em);
}

.intro.is-kinetic-visible .intro-type-title .kinetic-char {
  animation: introTypeKey 1ms linear forwards;
  animation-delay: calc(var(--char-index) * 42ms);
}

.intro-slide-copy {
  position: relative;
  margin-top: calc(14px + 0.82rem * 1.2);
}

.intro.is-kinetic-ready .intro-slide-copy {
  opacity: 0;
  transform: translate3d(min(44vw, 520px), 0, 0);
  transition:
    opacity 260ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.intro.is-kinetic-ready.is-copy-active .intro-slide-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes introTypeKey {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-type-title .kinetic-char,
  .intro-slide-copy {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .hero::before,
  .hero::after,
  .hero picture img,
  .hero .eyebrow,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-panel {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 21, 34, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}


.method [data-method-typewriter] {
  max-width: min(100%, 560px);
  overflow-wrap: normal;
  text-wrap: balance;
}

.method.is-method-kinetic-ready [data-method-typewriter] .kinetic-char {
  opacity: 0;
  transform: translateY(0.08em);
}

.method.is-method-title-active [data-method-typewriter] .kinetic-char {
  animation: methodTypeKey 1ms linear forwards;
  animation-delay: calc(var(--char-index) * 38ms);
}

.method.is-method-kinetic-ready .steps li {
  opacity: 0;
  transform: translate3d(clamp(72px, 12vw, 180px), 0, 0);
  transition:
    opacity 340ms ease var(--method-step-delay, 0ms),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--method-step-delay, 0ms),
    border-color 180ms ease,
    background 180ms ease;
  will-change: opacity, transform;
}

.method.is-method-steps-active .steps li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes methodTypeKey {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.method {
  background: #ffffff;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 96px);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.steps span {
  grid-row: span 2;
  color: var(--accent);
  font-weight: 950;
}

.steps strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.advantage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  min-height: 640px;
  background: #0b1118;
}

.advantage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 92px);
  color: rgba(255, 255, 255, 0.82);
}

.advantage-content h2 {
  color: #ffffff;
}

.advantage-intro {
  max-width: 690px;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.advantage-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.advantage-item h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.02rem;
}

.advantage-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #ffffff;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: #8ef0ad;
  content: "\2713";
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(44px, 8vw, 96px) 20px;
  color: #ffffff;
  text-align: center;
}

.cta img,
.cta::after {
  position: absolute;
  inset: 0;
}

.cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta::after {
  background: rgba(7, 12, 18, 0.68);
  content: "";
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.cta h2 {
  color: #ffffff;
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.contact-grid > div p {
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 21, 34, 0.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.form-status {
  display: none;
  margin: 0;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(23, 138, 69, 0.28);
  color: #126c37;
  background: rgba(23, 138, 69, 0.1);
}

.form-status.is-error {
  border: 1px solid rgba(185, 28, 28, 0.24);
  color: #991b1b;
  background: rgba(254, 226, 226, 0.7);
}

.form-status.is-info {
  border: 1px solid rgba(51, 65, 85, 0.18);
  color: #334155;
  background: #f8fafc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}


.contact-form.is-demo-typing input::placeholder,
.contact-form.is-demo-typing textarea::placeholder {
  color: rgba(15, 23, 42, 0.48);
  opacity: 1;
}

.contact-form.is-demo-typing input,
.contact-form.is-demo-typing textarea {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(23, 138, 69, 0.18);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.contact-form__note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  font-weight: 900;
}

.site-footer img {
  height: auto;
}

.footer-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-wordmark {
  width: 116px;
  max-height: 28px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .intro-slide-copy {
    margin-top: 0;
  }

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

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 390px);
    margin-top: 28px;
  }

  .hero {
    align-items: center;
  }

  .advantage,
  .intro-grid,
  .method-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .advantage > img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    filter: none;
  }

  .brand {
    min-width: 138px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    width: 96px;
    max-height: 24px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(16, 21, 34, 0.16);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
    padding: 13px 14px;
  }

  .nav-featured {
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding: 120px 20px 34px;
  }

  .hero-overlay {
    background: rgba(7, 12, 18, 0.66);
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

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

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

  .steps li {
    grid-template-columns: 1fr;
  }

  .steps span {
    grid-row: auto;
    margin-bottom: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Cinematic hero intro */
.hero {
  isolation: isolate;
  background: #071018;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 58%),
    linear-gradient(90deg, rgba(142, 240, 173, 0.16), transparent 36%);
  opacity: 0;
  transform: translate3d(-18%, 0, 0) skewX(-10deg);
}

.hero::after {
  z-index: 1;
  background: #071018;
  transform: scaleX(1);
  transform-origin: right center;
}

.hero picture img {
  transform: scale(1.1) translate3d(-1.4%, 0, 0);
  filter: saturate(0.78) contrast(1.12) brightness(0.78);
  will-change: transform, filter;
}

.hero-content,
.hero-panel {
  z-index: 3;
}

.hero .eyebrow,
.hero-title,
.hero-lead,
.hero-actions,
.hero-panel {
  opacity: 0;
  will-change: transform, opacity, clip-path, filter;
}

.hero .eyebrow {
  transform: translate3d(0, 16px, 0);
}

.hero-title {
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-18px, 0, 0);
}

.hero-lead {
  transform: translate3d(0, 26px, 0);
  filter: blur(8px);
}

.hero-actions {
  transform: translate3d(0, 22px, 0);
}

.hero-panel {
  transform: translate3d(24px, 20px, 0);
  filter: blur(7px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

body.is-loaded .hero::after {
  animation: heroCurtainReveal 1180ms cubic-bezier(0.76, 0, 0.24, 1) 120ms forwards;
}

body.is-loaded .hero::before {
  animation: heroLightPass 1550ms cubic-bezier(0.16, 1, 0.3, 1) 520ms forwards;
}

body.is-loaded .hero picture img {
  animation: heroImageEntrance 2200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-loaded .hero .eyebrow {
  animation: heroSoftRise 640ms ease-out 620ms forwards;
}

body.is-loaded .hero-title {
  animation: heroTitleReveal 920ms cubic-bezier(0.16, 1, 0.3, 1) 780ms forwards;
}

body.is-loaded .hero-lead {
  animation: heroLeadReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 1120ms forwards;
}

body.is-loaded .hero-actions {
  animation: heroSoftRise 720ms cubic-bezier(0.16, 1, 0.3, 1) 1320ms forwards;
}

body.is-loaded .hero-panel {
  animation: heroPanelReveal 820ms cubic-bezier(0.16, 1, 0.3, 1) 1480ms forwards;
}

.hero-panel:hover {
  border-color: rgba(142, 240, 173, 0.72);
  background: rgba(9, 14, 20, 0.46);
}

.button {
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button::after {
  position: absolute;
  inset: -40% -70%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%);
  content: '';
  transform: translateX(-72%) rotate(8deg);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 21, 34, 0.18);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(72%) rotate(8deg);
}

.service-card {
  position: relative;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(23, 138, 69, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(16, 21, 34, 0.12);
}

.service-card img {
  transition: transform 700ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.advantage {
  position: relative;
  overflow: hidden;
}

.advantage::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 68% 35%, rgba(142, 240, 173, 0.12), transparent 30%);
  content: '';
}

.advantage-content {
  position: relative;
}

.cta img {
  transform: scale(1.025);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms ease var(--reveal-delay, 0ms),
    transform 780ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroCurtainReveal {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes heroLightPass {
  0% {
    opacity: 0;
    transform: translate3d(-24%, 0, 0) skewX(-10deg);
  }

  32% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate3d(24%, 0, 0) skewX(-10deg);
  }
}

@keyframes heroImageEntrance {
  0% {
    transform: scale(1.1) translate3d(-1.4%, 0, 0);
    filter: saturate(0.78) contrast(1.12) brightness(0.78);
  }

  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
    filter: saturate(0.95) contrast(1.06) brightness(0.9);
  }
}

@keyframes heroSoftRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroTitleReveal {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-18px, 0, 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroLeadReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroPanelReveal {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

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

  [data-reveal],
  .hero-content,
  .hero-panel {
    opacity: 1;
    transform: none;
  }

  .method.is-method-kinetic-ready [data-method-typewriter] .kinetic-char,
  .method.is-method-kinetic-ready .steps li {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero::before {
    opacity: 0 !important;
  }

  .hero::after {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .hero picture img,
  .hero .eyebrow,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-panel {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-wordmark {
    transform: none !important;
  }
}
/* Hero wordmark */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-title {
  --hero-wordmark-bleed: clamp(24px, 2vw, 34px);
  max-width: min(100%, 740px);
  margin-left: calc(var(--hero-wordmark-bleed) * -1);
  margin-bottom: 20px;
  padding-left: var(--hero-wordmark-bleed);
  line-height: 1;
  overflow: visible;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.hero-wordmark {
  --hero-wordmark-spin: 0deg;
  width: clamp(280px, 48vw, 690px);
  height: auto;
  margin-left: clamp(-18px, -1.3vw, -8px);
  max-width: 100%;
  backface-visibility: visible;
  filter: brightness(0) invert(1) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
  transform: rotateX(var(--hero-wordmark-spin));
  transform-origin: 50% 54%;
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 760px) {
  .hero-title {
    margin-bottom: 18px;
  }

  .hero-wordmark {
    width: clamp(260px, 78vw, 440px);
  }
}

/* Original public content sections */
.clienteles {
  background: #ffffff;
}

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

.audience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  box-shadow: 0 18px 46px rgba(16, 21, 34, 0.06);
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 950;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #f8fbf9;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  border-color: rgba(23, 138, 69, 0.34);
  background: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink);
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}


.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  opacity: 0.72;
}

.developer-credit span {
  color: #667085;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.developer-credit img {
  width: 86px;
  max-height: 20px;
  object-fit: contain;
}

.developer-credit:hover,
.developer-credit:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 760px) {
  .developer-credit {
    align-self: flex-start;
  }

  .developer-credit img {
    width: 82px;
  }
}


/* Service detail modal */
.service-card[role="button"] {
  cursor: pointer;
}

.service-card:focus-visible {
  border-color: rgba(23, 138, 69, 0.55);
  outline: 4px solid rgba(23, 138, 69, 0.2);
  outline-offset: 3px;
}

.service-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 18, 0.72);
  backdrop-filter: blur(10px);
}

.service-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.service-modal__panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.service-modal__description {
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.13rem;
}

.service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal__close:hover,
.service-modal__close:focus-visible {
  border-color: rgba(23, 138, 69, 0.36);
  outline: none;
}

@media (max-width: 760px) {
  .advantage-list {
    grid-template-columns: 1fr;
  }

  .service-modal {
    align-items: end;
    padding: 14px;
  }

  .service-modal__panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
  }
}

/* Legal and consent */
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a,
.footer-links button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: #ffffff;
  outline: none;
}

body.consent-open {
  overflow: hidden;
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(920px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(10, 17, 24, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.consent-banner p {
  margin: 0;
}

.consent-banner a {
  display: inline-flex;
  margin-top: 10px;
  color: #8ef0ad;
  font-weight: 900;
}

.consent-kicker {
  margin-bottom: 5px !important;
  color: #ffffff;
  font-weight: 950;
}

.consent-actions,
.consent-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.consent-banner .button {
  white-space: nowrap;
}

.consent-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 18, 0.72);
  backdrop-filter: blur(10px);
}

.consent-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.consent-modal__panel h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.consent-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.consent-options {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.consent-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fbf9;
}

.consent-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--green);
}

.consent-option strong,
.consent-option small {
  display: block;
}

.consent-option strong {
  color: var(--ink);
}

.consent-option small {
  color: var(--muted);
}

.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(16, 21, 34, 0.08);
}

.legal-main {
  padding-top: 96px;
  background: var(--soft);
}

.legal-document {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 82px) 0;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(16, 21, 34, 0.08);
}

.legal-card h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 800;
}

.legal-note {
  border-left: 4px solid var(--green);
  margin: 24px 0;
  padding: 14px 18px;
  background: #f2faf5;
}

@media (max-width: 760px) {
  .consent-banner {
    grid-template-columns: 1fr;
  }

  .consent-actions,
  .consent-modal__actions {
    justify-content: stretch;
  }

  .consent-actions .button,
  .consent-modal__actions .button {
    flex: 1 1 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
