:root {
  --green-950: #0b2f27;
  --green-900: #103d31;
  --green-800: #14563f;
  --green-700: #0f6849;
  --green-600: #17805a;
  --green-500: #38a873;
  --green-300: #96d3ae;
  --green-200: #c9e7d4;
  --green-100: #e7f3eb;
  --green-50: #f3f8f5;
  --ivory: #fbfaf6;
  --sand: #eee8dc;
  --white: #ffffff;
  --ink: #193029;
  --muted: #60726b;
  --line: rgba(16, 61, 49, 0.13);
  --shadow-sm: 0 10px 30px rgba(19, 71, 53, 0.08);
  --shadow-md: 0 24px 70px rgba(12, 50, 40, 0.14);
  --shadow-lg: 0 35px 100px rgba(10, 46, 37, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --header-height: 92px;
  --container: 1200px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
video {
  height: auto;
}

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

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid #f1c875;
  outline-offset: 4px;
}

::selection {
  background: var(--green-200);
  color: var(--green-950);
}

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

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

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

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

.soft {
  background: var(--green-50);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  height: 80px;
  border-bottom-color: var(--line);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 8px 30px rgba(15, 67, 51, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(20, 86, 63, 0.1);
}

.site-header .brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  transition: width 0.25s ease, height 0.25s ease, flex-basis 0.25s ease;
}

.site-header.scrolled .brand img {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 20px;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #435b53;
  font-size: 0.83rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-700);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  background: var(--green-700);
  box-shadow: 0 12px 28px rgba(15, 104, 73, 0.2);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  border-color: var(--green-800);
  background: var(--green-800);
  box-shadow: 0 16px 36px rgba(15, 104, 73, 0.28);
  transform: translateY(-2px);
}

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

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.78rem;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  color: var(--green-800);
}

.button-ghost:hover {
  border-color: var(--green-300);
  background: var(--white);
  color: var(--green-800);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: var(--green-800);
}

.button-light:hover {
  border-color: var(--green-100);
  background: var(--green-100);
  color: var(--green-950);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-800);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(940px, 100svh);
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 92px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(231, 243, 235, 0.88), rgba(251, 250, 246, 0.93) 45%, rgba(241, 247, 243, 0.8)),
    radial-gradient(circle at 12% 38%, rgba(150, 211, 174, 0.35), transparent 36%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 86, 63, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 86, 63, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(50px, 7vw, 100px);
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--green-300);
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 26px;
  font-size: clamp(3.05rem, 5.6vw, 5.65rem);
}

.hero h1 em {
  color: var(--green-700);
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #52665e;
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  gap: 18px 24px;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #435b53;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-trust li span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  margin-left: auto;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-image-wrap::after {
  position: absolute;
  z-index: -1;
  inset: auto -28px -28px auto;
  width: 62%;
  height: 48%;
  border-radius: 35px;
  background: var(--green-300);
  content: "";
  opacity: 0.4;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 38px;
  display: flex;
  max-width: 280px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  color: var(--green-900);
  font-size: 0.83rem;
  line-height: 1.3;
}

.floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.pulse-dot {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 3px solid var(--green-200);
  border-radius: 50%;
  background: var(--green-600);
}

.pulse-dot::after {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--green-500);
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(56, 168, 115, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 9%;
  right: -9%;
  width: 560px;
  height: 560px;
}

.hero-orb-two {
  right: 22%;
  bottom: -17%;
  width: 310px;
  height: 310px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: bob 1.8s ease-in-out infinite;
}

.about-grid,
.feature-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 8vw, 120px);
}

.about-visual {
  position: relative;
  width: min(100%, 480px);
}

.about-visual::before {
  position: absolute;
  inset: 12% -12% -8% 14%;
  border-radius: var(--radius-lg);
  background: var(--green-100);
  content: "";
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-100), var(--sand));
  box-shadow: var(--shadow-md);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: center top;
}

.credential-card {
  position: absolute;
  right: -54px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border: 1px solid var(--green-100);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.credential-card svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.credential-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-800);
}

.about-copy {
  max-width: 650px;
}

.about-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
  font-size: 1.03rem;
}

.about-highlights {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-highlights > div {
  display: grid;
  min-height: 130px;
  align-content: space-between;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.about-highlights strong {
  color: var(--green-500);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.about-highlights span {
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
}

.services {
  border-top: 1px solid var(--line);
  background: #f7f9f6;
}

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

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:not(.eyebrow),
.split-heading > p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.03rem;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.62fr);
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::after {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--green-100);
  content: "";
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::after {
  opacity: 0.8;
  transform: scale(1);
}

.service-card.featured {
  background: var(--green-800);
}

.service-card.featured h3,
.service-card.featured a {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card.featured .icon-box {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-200);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card p {
  margin-bottom: 24px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card .service-note {
  margin: -10px 0 22px;
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.45;
}

.service-card.featured .service-note {
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 721px) {
  .service-grid {
    grid-auto-rows: 1fr;
  }

  .service-card {
    height: 100%;
  }
}

@media (min-width: 1121px) {
  .service-card:last-child {
    grid-column: 2;
  }
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 9px;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card a span {
  transition: transform 0.2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.clinical-note {
  margin: 26px 0 0;
  color: #75837e;
  font-size: 0.77rem;
  text-align: center;
}

.feature-grid {
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
}

.feature-grid.reverse .feature-media,
.feature-grid.reverse .integration-media {
  order: 2;
}

.feature-grid.reverse .feature-copy {
  order: 1;
}

.feature-media {
  position: relative;
  margin: 0;
}

.portrait-media {
  width: min(100%, 490px);
}

.portrait-media::before {
  position: absolute;
  z-index: 0;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  content: "";
}

.portrait-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.portrait-media figcaption {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 25px;
  max-width: 250px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 750;
}

.feature-copy {
  max-width: 650px;
}

.feature-copy > p:not(.eyebrow, .technical-note) {
  margin-bottom: 19px;
  font-size: 1rem;
}

.feature-copy .lead-quote {
  color: #40564e;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem) !important;
  line-height: 1.48;
}

.callout {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
}

.callout svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem !important;
}

.callout strong {
  color: var(--green-900);
}

.technical-note {
  margin: 34px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #7a8983 !important;
  font-size: 0.69rem !important;
  line-height: 1.5;
}

.benefit-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.benefit-list span {
  color: var(--green-500);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.dark-section {
  background: var(--green-950);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(56, 168, 115, 0.15), transparent 35%);
  content: "";
  pointer-events: none;
}

.dark-section h2,
.dark-section .feature-copy > p:not(.eyebrow, .technical-note),
.dark-section .feature-copy .lead-quote {
  color: var(--white);
}

.dark-section .feature-copy > p:not(.eyebrow, .technical-note) {
  color: rgba(255, 255, 255, 0.68);
}

.dark-section .portrait-media::before {
  border-color: rgba(150, 211, 174, 0.3);
}

.dark-section .portrait-media figcaption {
  background: var(--green-700);
  color: var(--white);
}

.dark-section .technical-note {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42) !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  gap: 10px;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  color: var(--green-300);
}

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

.technology-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.72fr 1fr 0.72fr;
  gap: 20px;
}

.technology-photo,
.video-card {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green-950);
  box-shadow: var(--shadow-sm);
}

.technology-photo img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--green-50);
}

.technology-copy > p:not(.technical-note) {
  margin-bottom: 17px;
  font-size: 0.96rem;
}

.technology-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  gap: 8px;
}

.technology-tags span {
  padding: 8px 11px;
  border: 1px solid var(--green-200);
  border-radius: 99px;
  background: var(--white);
  color: var(--green-800);
  font-size: 0.7rem;
  font-weight: 750;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-card video {
  min-height: 0;
  flex: 1;
}

.video-card figcaption {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
}

.play-mark {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  font-size: 0.64rem;
}

.cadillac-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.media-tile {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green-950);
  box-shadow: var(--shadow-sm);
}

.media-tile img,
.media-tile video {
  width: 100%;
  aspect-ratio: 0.5625;
  object-fit: cover;
}

.image-tile:nth-child(1) {
  transform: translateY(28px);
}

.video-tile:nth-child(4) {
  transform: translateY(28px);
}

.cadillac-footer {
  display: grid;
  align-items: center;
  margin-top: 70px;
  padding: 30px 34px;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cadillac-footer p,
.cadillac-footer span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cadillac-footer p strong {
  color: var(--green-800);
}

.cadillac-footer > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.centered-note {
  text-align: center;
}

.integration-media {
  position: relative;
  min-height: 650px;
}

.integration-video,
.integration-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.integration-video {
  z-index: 1;
  top: 0;
  right: 0;
  width: 66%;
}

.integration-photo {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 55%;
  border: 8px solid var(--white);
}

.integration-video video,
.integration-photo img {
  width: 100%;
  aspect-ratio: 0.5625;
  object-fit: cover;
}

.trust-story {
  overflow: hidden;
  background: var(--green-900);
}

.trust-story::before {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(150, 211, 174, 0.16);
  border-radius: 50%;
  content: "";
}

.trust-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 8vw, 110px);
}

.trust-copy h2,
.trust-copy > p:not(.eyebrow, .technical-note) {
  color: var(--white);
}

.trust-copy > p:not(.eyebrow, .technical-note) {
  color: rgba(255, 255, 255, 0.7);
}

.trust-copy .trust-highlight {
  margin-top: 28px;
  padding-left: 19px;
  border-left: 2px solid var(--green-300);
  color: var(--green-200) !important;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.4;
}

.trust-copy .technical-note {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.42) !important;
}

.trust-images {
  position: relative;
  min-height: 610px;
}

.trust-images figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.trust-images figure:first-child {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 58%;
}

.trust-images figure:last-child {
  top: 0;
  right: 0;
  width: 60%;
  border: 8px solid rgba(255, 255, 255, 0.9);
}

.trust-images img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
}

.trust-images figure:last-child img {
  aspect-ratio: 1;
}

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

.differential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.differential-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ivory);
  transition: background 0.25s ease, transform 0.25s ease;
}

.differential-grid article:hover {
  background: var(--green-50);
  transform: translateY(-4px);
}

.differential-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--green-500);
  font-family: var(--font-display);
  font-size: 1.42rem;
}

.differential-grid article p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  display: grid;
  padding: 8px 2px 16px;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-rows: 440px;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track:focus-visible {
  border-radius: var(--radius-md);
  outline: 3px solid rgba(36, 143, 103, 0.28);
  outline-offset: 5px;
}

html:not(.js) .testimonial-track {
  grid-auto-flow: row;
  grid-auto-rows: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

html:not(.js) .testimonial-card {
  height: auto;
}

html:not(.js) .review-copy {
  height: auto;
  min-height: 0;
  overflow: visible;
}

html:not(.js) .testimonial-arrow,
html:not(.js) .testimonial-controls {
  display: none;
}

.testimonial-card {
  position: relative;
  display: flex;
  width: auto;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(19, 71, 53, 0.06);
  scroll-snap-align: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 24px;
  color: var(--green-100);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
}

.review-copy {
  position: relative;
  z-index: 1;
  height: 225px;
  min-height: 225px;
  margin: 35px 0 14px;
  overflow: hidden;
}

.testimonial-card.has-overflow .review-copy {
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

.review-copy p,
.review-dialog-copy p {
  margin-bottom: 14px;
  color: #53675f;
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.55;
}

.review-copy p:last-child,
.review-dialog-copy p:last-child {
  margin-bottom: 0;
}

.review-more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  font: 800 0.7rem/1 var(--font-sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.review-more[hidden] {
  display: none;
}

.review-more span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--green-200);
  border-radius: 50%;
  background: var(--green-50);
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-more:hover span,
.review-more:focus-visible span {
  background: var(--green-100);
  transform: rotate(90deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--green-800);
  font-size: 0.77rem;
}

.review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--green-200);
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
}

.testimonial-disclaimer {
  max-width: 850px;
  margin: 28px auto 0;
  color: #788781;
  font-size: 0.72rem;
  text-align: center;
}

.testimonial-arrow {
  position: absolute;
  z-index: 5;
  top: 220px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--green-200);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow span {
  margin-top: -3px;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.testimonial-arrow-prev {
  left: -24px;
}

.testimonial-arrow-next {
  right: -24px;
}

.testimonial-arrow:hover:not(:disabled),
.testimonial-arrow:focus-visible:not(:disabled) {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.testimonial-arrow:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.testimonial-status {
  padding: 7px 12px;
  border: 1px solid var(--green-100);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #6d7f77;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(86vh, 760px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--green-900);
}

.review-dialog::backdrop {
  background: rgba(5, 28, 22, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.review-dialog-inner {
  position: relative;
  max-height: min(86vh, 760px);
  padding: 52px;
  overflow-y: auto;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(5, 28, 22, 0.32);
}

.review-dialog .quote-mark {
  top: 20px;
  right: 70px;
}

.review-dialog-copy {
  position: relative;
  z-index: 1;
  margin: 28px 0 34px;
}

.review-dialog-copy p {
  font-size: 1.14rem;
}

.review-dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--green-200);
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.review-dialog-close:hover,
.review-dialog-close:focus-visible {
  background: var(--green-700);
  color: var(--white);
  transform: rotate(90deg);
}

.dialog-open {
  overflow: hidden;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--green-900);
  font-size: 0.96rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--green-200);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--green-700);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -2px 50px 24px 0;
  font-size: 0.9rem;
}

.contact {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(56, 168, 115, 0.18), transparent 30%),
    var(--green-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 110px);
}

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

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.contact-details {
  display: grid;
  margin-top: 42px;
  gap: 10px;
}

.contact-details > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.contact-details > a:hover {
  border-color: rgba(150, 211, 174, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.contact-details > a > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(150, 211, 174, 0.14);
  color: var(--green-300);
}

.contact-details svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-details .whatsapp-contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  margin-top: 2px;
  color: var(--white);
  font-size: 0.87rem;
}

.contact-form {
  padding: clamp(28px, 4.2vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.form-heading p {
  margin: 0;
  color: var(--green-600);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label:not(.consent) {
  display: grid;
  margin-bottom: 15px;
  gap: 7px;
}

.contact-form label > span:first-child {
  color: var(--green-900);
  font-size: 0.77rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe5df;
  border-radius: 12px;
  background: #fbfcfb;
  color: var(--ink);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 108px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(56, 168, 115, 0.11);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #97a39e;
}

.consent {
  display: flex;
  align-items: flex-start;
  margin: 8px 0 20px;
  gap: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--green-700);
}

.consent a {
  color: var(--green-700);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.67rem;
  text-align: center;
}

.button .whatsapp-button-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.map-panel {
  display: grid;
  margin-top: 80px;
  overflow: hidden;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(255, 255, 255, 0.045);
}

.map-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 5vw, 58px);
}

.map-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.8vw, 3.4rem);
}

.map-copy address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.7;
}

.map-phone {
  display: inline-block;
  margin-top: 17px;
  color: var(--green-200);
  font-size: 0.86rem;
}

.map-phone strong {
  color: var(--white);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}

.map-embed {
  min-height: 460px;
  background: var(--green-900);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.location-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.location-actions > div:first-child span,
.location-actions > div:first-child strong {
  display: block;
}

.location-actions > div:first-child span {
  color: var(--green-300);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-actions > div:first-child strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1.05rem;
}

.location-actions > div:last-child {
  display: flex;
  gap: 10px;
}

.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--green-700);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -220px;
  right: -100px;
  width: 520px;
  height: 520px;
}

.final-cta::after {
  bottom: -220px;
  left: 28%;
  width: 420px;
  height: 420px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
}

.final-cta-inner > div {
  max-width: 830px;
}

.final-cta h2 {
  margin-bottom: 15px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
}

.site-footer {
  padding: 75px 0 0;
  background: #09271f;
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.9fr;
  gap: 50px;
}

.site-footer .brand strong {
  color: var(--white);
}

.site-footer .brand small {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer .brand img {
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.footer-brand > p {
  max-width: 310px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.82rem;
}

.footer-brand .footer-credential {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.site-footer h3 {
  margin: 8px 0 20px;
  color: var(--green-200);
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer li a,
.site-footer li,
.footer-action p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.site-footer li a:hover {
  color: var(--white);
}

.footer-action p {
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.68rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.developer-credit {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.developer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.developer-credit a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: var(--green-200);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.developer-credit a::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #6df2b7;
  box-shadow: 0 0 0 0 rgba(109, 242, 183, 0.48);
  content: "";
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.developer-credit a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6df2b7 22%, #ffffff 50%, #6df2b7 78%, transparent);
  background-size: 220% 100%;
  content: "";
  opacity: 0.58;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  color: var(--white);
  filter: drop-shadow(0 0 9px rgba(109, 242, 183, 0.42));
  transform: translateY(-2px);
}

.developer-credit a:hover::before,
.developer-credit a:focus-visible::before {
  box-shadow: 0 0 0 7px rgba(109, 242, 183, 0.12), 0 0 16px rgba(109, 242, 183, 0.72);
  transform: scale(1.18);
}

.developer-credit a:hover::after,
.developer-credit a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  animation: developer-scan 1.1s linear infinite;
}

@keyframes developer-scan {
  to {
    background-position: -220% 0;
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(18, 79, 53, 0.25);
  color: var(--white);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-label {
  position: absolute;
  right: calc(100% + 10px);
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--green-950);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

.noscript-message {
  position: fixed;
  z-index: 2000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff4ce;
  color: #5c4812;
  font-size: 0.82rem;
  text-align: center;
}

.privacy-page {
  min-height: 100vh;
  padding: 80px 0;
  background: var(--green-50);
}

.privacy-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.privacy-card .brand {
  margin-bottom: 45px;
}

.privacy-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.privacy-card h2 {
  margin-top: 36px;
  margin-bottom: 13px;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.privacy-card .button {
  margin-top: 30px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  from { opacity: 0.7; transform: scale(0.7); }
  to { opacity: 0; transform: scale(1.7); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 82px;
  }

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

  .site-header .brand img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .site-header.scrolled .brand img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .service-card:last-child {
    width: calc(50% - 8px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 20px);
    align-content: start;
    justify-content: stretch;
    margin: 0;
    padding: 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 44px;
  }

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

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

  .technology-grid {
    grid-template-columns: 0.72fr 1fr;
  }

  .technology-copy {
    order: -1;
    grid-column: 1 / -1;
  }

  .technology-photo,
  .video-card {
    min-height: 680px;
  }

  .cadillac-footer {
    grid-template-columns: 1fr;
  }

  .cadillac-footer > div {
    justify-content: space-between;
  }

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

  .footer-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

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

  .hero-grid,
  .about-grid,
  .feature-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    width: min(88%, 560px);
    margin: 20px auto 0;
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .feature-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    gap: 58px;
  }

  .about-visual,
  .portrait-media {
    width: min(82%, 520px);
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy,
  .feature-copy {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid.reverse .feature-media,
  .feature-grid.reverse .integration-media {
    order: 1;
  }

  .feature-grid.reverse .feature-copy {
    order: 2;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-heading > p {
    max-width: 720px;
    margin-right: 0;
    margin-left: 0;
  }

  .cadillac-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-tile:nth-child(1),
  .video-tile:nth-child(4) {
    transform: none;
  }

  .integration-media {
    width: min(100%, 650px);
    min-height: 690px;
    margin-right: auto;
    margin-left: auto;
  }

  .trust-copy {
    max-width: 700px;
  }

  .trust-images {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  html:not(.js) .testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-arrow-prev {
    left: -12px;
  }

  .testimonial-arrow-next {
    right: -12px;
  }

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

  .map-copy {
    min-height: 410px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 410px;
  }

  .faq-intro {
    position: static;
  }

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

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  :root {
    --radius-lg: 28px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    width: calc(100% - 10px);
  }

  .floating-note {
    right: -5px;
    bottom: 15px;
    max-width: 250px;
  }

  .about-visual,
  .portrait-media {
    width: calc(100% - 20px);
  }

  .credential-card {
    right: -8px;
    bottom: 24px;
    max-width: 255px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights > div {
    min-height: 90px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
  }

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

  .service-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
    grid-auto-rows: 430px;
  }

  html:not(.js) .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    top: 215px;
    width: 42px;
    height: 42px;
  }

  .testimonial-arrow-prev {
    left: -10px;
  }

  .testimonial-arrow-next {
    right: -10px;
  }

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

  .portrait-media figcaption {
    right: -4px;
    bottom: 15px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .technology-photo,
  .video-card {
    min-height: auto;
  }

  .technology-photo img,
  .video-card video {
    aspect-ratio: 0.5625;
  }

  .cadillac-gallery {
    display: flex;
    margin-right: 0;
    padding-right: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .media-tile {
    min-width: min(78vw, 320px);
    scroll-snap-align: start;
  }

  .cadillac-footer {
    margin-top: 45px;
    padding: 24px;
  }

  .cadillac-footer > div {
    align-items: stretch;
    flex-direction: column;
  }

  .integration-media {
    min-height: 570px;
  }

  .integration-video {
    width: 70%;
  }

  .integration-photo {
    width: 60%;
  }

  .trust-images {
    min-height: 500px;
  }

  .differential-grid article {
    min-height: 180px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .location-actions > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .map-copy {
    min-height: auto;
  }

  .map-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand,
  .footer-action {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .float-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 74px 0;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .site-header .brand img,
  .site-header.scrolled .brand img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

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

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  .hero-image-wrap {
    padding: 8px;
    border-radius: 30px;
  }

  .hero-image-wrap img {
    border-radius: 22px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -18px 12px 0;
  }

  .credential-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -35px 12px 0;
  }

  .service-card,
  .testimonial-card,
  .differential-grid article,
  .technology-copy,
  .cadillac-footer,
  .contact-form {
    padding: 24px;
  }

  .review-copy {
    height: 220px;
    min-height: 220px;
  }

  .review-dialog-inner {
    padding: 46px 24px 30px;
  }

  .review-dialog-copy p {
    font-size: 1.02rem;
  }

  .integration-media {
    min-height: 490px;
  }

  .trust-images {
    min-height: 420px;
  }

  .trust-images figure:first-child {
    width: 62%;
  }

  .trust-images figure:last-child {
    width: 64%;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.88rem;
  }

  .location-actions > div:last-child {
    grid-template-columns: 1fr;
  }

  .map-actions {
    grid-template-columns: 1fr;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 340px;
  }

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

  .footer-brand,
  .footer-action {
    grid-column: auto;
  }

  .developer-credit p {
    max-width: 310px;
    line-height: 1.7;
  }
}

@media (max-width: 390px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    gap: 12px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand strong {
    font-size: 0.9rem;
  }

  .site-header .brand small {
    font-size: 0.49rem;
    letter-spacing: 0.07em;
  }

  .site-header .brand img,
  .site-header.scrolled .brand img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .developer-credit a:hover,
  .developer-credit a:focus-visible,
  .developer-credit a:hover::before,
  .developer-credit a:focus-visible::before {
    transform: none;
  }
}
