:root {
  --bg: #061411;
  --bg-soft: #0b1d18;
  --surface: rgba(8, 25, 21, 0.68);
  --surface-strong: rgba(11, 31, 25, 0.9);
  --surface-light: rgba(13, 34, 28, 0.82);
  --text: #e8fbf5;
  --text-dark: #e8fbf5;
  --muted: #9bbab0;
  --line: rgba(84, 235, 220, 0.16);
  --primary: #19dfcf;
  --primary-strong: #9cfaf4;
  --primary-soft: rgba(25, 223, 207, 0.12);
  --accent: #3ab8ff;
  --accent-strong: #77f6ff;
  --accent-soft: rgba(58, 184, 255, 0.16);
  --violet-glow: rgba(104, 126, 255, 0.14);
  --warning: #ffdf7a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.4);
  --radius: 28px;
  --radius-sm: 20px;
  --max-width: 1180px;
  --header-height: 88px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Bahnschrift", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 223, 207, 0.1), transparent 20%),
    radial-gradient(circle at 84% 8%, rgba(58, 184, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #04100d 0%, #081814 42%, #0b1715 100%);
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body.platform-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(25, 223, 207, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 223, 207, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(25, 223, 207, 0.08), transparent 18%),
    radial-gradient(circle at 80% 14%, rgba(58, 184, 255, 0.08), transparent 18%),
    radial-gradient(circle at 60% 62%, rgba(25, 223, 207, 0.05), transparent 24%);
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px) saturate(140%);
  background: rgba(4, 18, 14, 0.72);
  border-bottom: 1px solid rgba(25, 223, 207, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  filter: none;
}

.brand__text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__text span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.brand--header {
  gap: 1.15rem;
}

.brand__mark--header {
  width: 78px;
  height: 78px;
  border-radius: 22px;
}

.brand__mark--header img {
  padding: 0;
}

.brand__text--header {
  display: flex;
  align-items: center;
}

.brand__text--header strong {
  font-size: 1.95rem;
  letter-spacing: 0.16em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__links a {
  padding: 0.6rem 0.92rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #c6ece0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: linear-gradient(135deg, rgba(25, 223, 207, 0.14), rgba(58, 184, 255, 0.1));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(25, 223, 207, 0.18);
}

.site-nav__platform-trigger {
  padding: 0.6rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(132, 255, 242, 0.26);
  background: linear-gradient(135deg, rgba(132, 255, 242, 0.22), rgba(58, 184, 255, 0.2));
  color: #f6fffd;
  font-size: 0.95rem;
  box-shadow:
    inset 0 0 0 1px rgba(132, 255, 242, 0.16),
    0 10px 24px rgba(20, 162, 240, 0.16);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.site-nav__platform-trigger:hover,
.site-nav__platform-trigger.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(25, 223, 207, 0.34), rgba(58, 184, 255, 0.28));
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(132, 255, 242, 0.3),
    0 14px 28px rgba(20, 162, 240, 0.22);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25, 223, 207, 0.16), rgba(58, 184, 255, 0.1));
  color: var(--text-dark);
  box-shadow: inset 0 0 0 1px rgba(25, 223, 207, 0.16);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn--primary {
  background: linear-gradient(135deg, #0ec8bb, #14a2f0 70%, #67f2ff 100%);
  color: #02110e;
  box-shadow: 0 18px 36px rgba(20, 162, 240, 0.28);
}

.btn--secondary {
  background: rgba(8, 28, 23, 0.58);
  backdrop-filter: blur(12px);
  border-color: rgba(25, 223, 207, 0.18);
  color: var(--primary-strong);
  box-shadow: inset 0 1px 0 rgba(132, 255, 242, 0.1);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(25, 223, 207, 0.14);
  color: var(--text-dark);
}

.btn--light {
  background: rgba(7, 28, 22, 0.78);
  color: #dffcf7;
  border-color: rgba(25, 223, 207, 0.14);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 4rem 0 2.8rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(25, 223, 207, 0.12), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(58, 184, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(2, 12, 10, 0.26), rgba(2, 12, 10, 0.1));
}

.hero__grid,
.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 223, 207, 0.14), rgba(58, 184, 255, 0.08));
  border: 1px solid rgba(25, 223, 207, 0.22);
  color: var(--primary-strong);
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(140, 255, 239, 0.16);
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  max-width: 13ch;
  font-size: clamp(2.3rem, 4.2vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero p,
.page-hero p {
  max-width: 62ch;
  color: #c0dfd5;
  font-size: 1.08rem;
  text-wrap: pretty;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.mini-stat {
  padding: 1.05rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 24, 20, 0.84), rgba(10, 31, 25, 0.66));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(25, 223, 207, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(140, 255, 239, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.mini-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--primary-strong);
}

.mini-stat span {
  color: #9fc5b9;
  font-size: 0.9rem;
}

.hero__visual,
.page-hero__visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: auto;
}

.hero-card {
  display: grid;
  gap: 1rem;
  position: relative;
  right: auto;
  width: 100%;
  border-radius: 34px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-card img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  height: auto;
}

.hero-card--main > img {
  min-height: 520px;
  border-radius: 34px;
  border: 1px solid rgba(25, 223, 207, 0.2);
  box-shadow: var(--shadow-strong);
}

.hero-card--main::before,
.page-hero__media::before,
.media-panel::before,
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(25, 223, 207, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(58, 184, 255, 0.18), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-card--main::before,
.hero-card--main::after {
  height: 520px;
  border-radius: 34px;
}

.hero-card--secondary {
  display: none;
}

.floating-panel {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  width: 100%;
  max-width: none;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  backdrop-filter: blur(16px) saturate(120%);
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.84), rgba(8, 31, 25, 0.64));
  border: 1px solid rgba(25, 223, 207, 0.2);
  color: var(--text-dark);
  box-shadow:
    inset 0 1px 0 rgba(140, 255, 239, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.floating-panel strong {
  display: block;
  margin-bottom: 0.4rem;
}

.floating-panel ul {
  margin: 0;
  padding-left: 1rem;
  color: #abd3c6;
}

.page-hero {
  padding: 2.8rem 0 2.3rem;
}

.page-hero__visual {
  min-height: auto;
}

.page-hero__media {
  position: relative;
  inset: auto;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(25, 223, 207, 0.18);
  box-shadow: var(--shadow-strong);
}

.page-hero__media::after,
.hero-card--main::after,
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 10, 12, 0.22));
  pointer-events: none;
}

.page-hero__media::before,
.page-hero__media::after {
  border-radius: 32px;
}

.page-hero__note {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: none;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.84), rgba(8, 31, 25, 0.66));
  border: 1px solid rgba(25, 223, 207, 0.18);
  color: var(--text-dark);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.page-section {
  position: relative;
  padding: 4.8rem 0;
  color: var(--text-dark);
}

.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.platform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 9, 8, 0.7);
  backdrop-filter: blur(10px);
}

.platform-modal__dialog {
  position: relative;
  width: min(calc(100% - 2rem), 760px);
  margin: 11vh auto 0;
  padding: 1.8rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(7, 24, 20, 0.96), rgba(10, 29, 24, 0.9));
  border: 1px solid rgba(25, 223, 207, 0.18);
  box-shadow: var(--shadow-strong);
}

.platform-modal__dialog h2 {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.platform-modal__dialog p {
  margin: 0;
  max-width: 58ch;
  color: #b9ddd2;
}

.platform-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(25, 223, 207, 0.18);
  background: rgba(7, 24, 20, 0.88);
  color: #dffff9;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.platform-modal__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.platform-modal__card {
  display: grid;
  gap: 0.6rem;
  min-height: 220px;
  padding: 1.35rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 24, 21, 0.9), rgba(11, 33, 27, 0.76));
  border: 1px solid rgba(25, 223, 207, 0.16);
  box-shadow: inset 0 1px 0 rgba(140, 255, 239, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-modal__card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 223, 207, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(140, 255, 239, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.24);
}

.platform-modal__label {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(25, 223, 207, 0.1);
  color: #9cfaf4;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-modal__card strong {
  font-size: 1.2rem;
}

.platform-modal__card span:last-child {
  color: #a7ccc1;
}

.page-section--dark {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 0%, rgba(25, 223, 207, 0.12), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(58, 184, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #081814, #0a1816);
}

.page-section--muted {
  background:
    linear-gradient(180deg, rgba(9, 21, 18, 0.94), rgba(11, 25, 21, 0.96));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 52ch;
  margin: 0;
  color: #a6c9be;
}

.page-section--dark .section-head p,
.page-section--dark .section-head .eyebrow {
  color: #a6c9be;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 24, 21, 0.88), rgba(10, 29, 24, 0.7));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(25, 223, 207, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(140, 255, 239, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 223, 207, 0.7), transparent);
  opacity: 0.9;
}

.card--dark {
  background:
    linear-gradient(180deg, rgba(7, 22, 19, 0.9), rgba(10, 29, 24, 0.76));
  border-color: rgba(25, 223, 207, 0.16);
  color: var(--text-dark);
}

.card--dark p,
.card--dark li,
.card--dark .meta {
  color: #a5cabf;
}

.card h3,
.card h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.card p,
.card li {
  margin: 0;
  color: #a5cabf;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(25, 223, 207, 0.16), rgba(58, 184, 255, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(140, 255, 239, 0.14),
    0 12px 24px rgba(20, 162, 240, 0.16);
  color: #dbfffb;
  font-size: 1.25rem;
  font-weight: 800;
}

.problem-list,
.step-list,
.feature-list,
.inline-list {
  display: grid;
  gap: 0.9rem;
}

.problem-item,
.step-item,
.feature-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(7, 24, 20, 0.84), rgba(9, 29, 24, 0.64));
  border: 1px solid rgba(25, 223, 207, 0.14);
  backdrop-filter: blur(10px);
}

.problem-item strong,
.step-item strong,
.feature-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: start;
}

.media-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: auto;
  border-radius: 32px;
  overflow: visible;
  border: none;
  box-shadow: none;
}

.media-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(25, 223, 207, 0.16);
  box-shadow: var(--shadow-strong);
}

.media-panel__overlay {
  position: relative;
  inset: auto;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.84), rgba(8, 31, 25, 0.66));
  color: var(--text-dark);
  border: 1px solid rgba(25, 223, 207, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.media-panel::before,
.media-panel::after {
  height: 420px;
  border-radius: 32px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7, 24, 20, 0.84), rgba(10, 31, 25, 0.64));
  border: 1px solid rgba(25, 223, 207, 0.14);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary-strong);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.gallery__item {
  display: grid;
  grid-template-rows: 220px auto;
  gap: 0.9rem;
  min-height: auto;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(25, 223, 207, 0.14);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.gallery__item--tall {
  grid-template-rows: 456px auto;
}

.gallery__item--tall img {
  height: 456px;
}

.gallery__caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  color: var(--text-dark);
  background: linear-gradient(180deg, rgba(7, 26, 22, 0.84), rgba(8, 31, 25, 0.66));
  border: 1px solid rgba(25, 223, 207, 0.14);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.gallery__item::before,
.gallery__item::after {
  height: 220px;
  border-radius: 24px;
}

.gallery__item--tall::before,
.gallery__item--tall::after {
  height: 456px;
}

.logo-grid,
.segment-grid,
.case-grid,
.service-grid,
.insight-grid {
  display: grid;
  gap: 1rem;
}

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

.logo-slot {
  min-height: 148px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 243, 0.94));
  border: 1px solid rgba(120, 160, 150, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.logo-slot img {
  width: 100%;
  max-width: 240px;
  max-height: 92px;
  object-fit: contain;
}

.platform-shell {
  display: grid;
  gap: 1.8rem;
}

.platform-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.platform-selector-card {
  display: grid;
  gap: 0.8rem;
  min-height: 240px;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 24, 21, 0.9), rgba(10, 29, 24, 0.72));
  border: 1px solid rgba(25, 223, 207, 0.16);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-selector-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 223, 207, 0.28);
  box-shadow: var(--shadow-strong);
}

.platform-selector-card img {
  width: 100%;
  max-width: 220px;
  height: 80px;
  object-fit: contain;
}

.platform-selector-card p {
  color: #a9cdc2;
  margin: 0;
}

.platform-selector-card--avant {
  margin-top: 3.5rem;
}

.platform-selector-card--valor {
  margin-top: -1.5rem;
}

.platform-selector-card--braspine {
  margin-top: 1.25rem;
}

.platform-brand-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.platform-brand-stack {
  display: grid;
  gap: 1rem;
}

.platform-brand-card {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 243, 0.94));
  border: 1px solid rgba(120, 160, 150, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 38px rgba(0, 0, 0, 0.16);
}

.platform-brand-card--institutional {
  min-height: auto;
  padding: 0.2rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

button.platform-brand-card {
  width: 100%;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

button.platform-brand-card:hover,
button.platform-brand-card[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: rgba(25, 223, 207, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 42px rgba(0, 0, 0, 0.2);
}

button.platform-brand-card--institutional:hover,
button.platform-brand-card--institutional[aria-expanded="true"] {
  border-color: transparent;
  box-shadow: none;
}

.platform-brand-card img {
  width: 100%;
  max-width: 320px;
  max-height: 120px;
  object-fit: contain;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.platform-tool-card {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 243, 0.94));
  border: 1px solid rgba(120, 160, 150, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(0, 0, 0, 0.16);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 223, 207, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 42px rgba(0, 0, 0, 0.18);
}

.platform-tool-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.platform-tool-card__body {
  padding: 0 1rem 1rem;
}

.platform-tool-card__body h3 {
  margin: 0;
  color: #17332b;
  font-size: 1.08rem;
}

.platform-tool-card__body p {
  margin: 0.55rem 0 0;
  color: #4f695f;
  font-size: 0.94rem;
}

.segment-grid,
.case-grid,
.service-grid,
.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card__meta,
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  color: #93c2b6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.check-list,
.dot-list {
  margin: 0;
  padding-left: 1.1rem;
}

.check-list li,
.dot-list li {
  margin-bottom: 0.55rem;
}

.kpi-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.kpi-band .card {
  background: linear-gradient(180deg, rgba(8, 24, 21, 0.88), rgba(10, 29, 24, 0.72));
  color: var(--text-dark);
}

.kpi-band strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  border-radius: 36px;
  background:
    linear-gradient(120deg, rgba(4, 16, 13, 0.72), rgba(6, 20, 18, 0.56)),
    url("../../imagens/cta-forest-tech.jpg") center/cover;
  color: var(--text-dark);
  border: 1px solid rgba(25, 223, 207, 0.18);
  box-shadow: var(--shadow-strong);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 12, 0.82), rgba(3, 14, 12, 0.32)),
    radial-gradient(circle at 78% 22%, rgba(58, 184, 255, 0.14), transparent 18%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.cta-banner p {
  max-width: 60ch;
  color: #c5e4da;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-grid--single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.contact-card,
.form-card {
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 24, 21, 0.88), rgba(10, 29, 24, 0.72));
  border: 1px solid rgba(25, 223, 207, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  color: var(--text-dark);
  backdrop-filter: blur(14px);
}

.contact-card--info,
.form-card--contact {
  display: grid;
  gap: 1.2rem;
}

.contact-card__lead {
  margin: 0;
  color: #b8ddd2;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.contact-channel-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 29, 24, 0.86), rgba(7, 23, 20, 0.72));
  border: 1px solid rgba(25, 223, 207, 0.14);
  box-shadow: inset 0 1px 0 rgba(140, 255, 239, 0.06);
  color: var(--text-dark);
}

.contact-channel-card strong {
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-channel-card span {
  color: #b7ddd1;
}

.contact-channel-card:hover {
  border-color: rgba(25, 223, 207, 0.24);
}

.contact-support-note {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(25, 223, 207, 0.1), rgba(58, 184, 255, 0.08));
  border: 1px solid rgba(25, 223, 207, 0.16);
  color: #d6fff9;
}

.contact-form-header {
  display: grid;
  gap: 0.55rem;
}

.contact-form-header h2 {
  margin: 0;
}

.contact-form-header p {
  margin: 0;
  color: #b7ddd1;
}

.contact-form-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-highlight {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 28, 23, 0.84), rgba(8, 23, 20, 0.74));
  border: 1px solid rgba(25, 223, 207, 0.14);
}

.contact-highlight strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #f2fffd;
}

.contact-highlight span {
  color: #afdad0;
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  font-weight: 700;
  color: #d4fcf7;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(25, 223, 207, 0.18);
  background: rgba(5, 21, 17, 0.74);
  box-shadow: inset 0 1px 0 rgba(140, 255, 239, 0.06);
  color: #ecfffb;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.form-feedback {
  margin-top: 1rem;
  color: var(--primary-strong);
  font-weight: 700;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(5, 18, 15, 0.96), rgba(7, 20, 17, 0.98));
  color: var(--text-dark);
  border-top: 1px solid rgba(25, 223, 207, 0.14);
}

.site-footer__top {
  padding: 3rem 0 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(180px, 0.5fr));
  gap: 1.3rem;
}

.site-footer__brand p,
.site-footer__list a,
.site-footer__list li {
  color: #9fc5b8;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer__bottom {
  padding: 1rem 0 2.2rem;
  border-top: 1px solid rgba(25, 223, 207, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #7fa79b;
  font-size: 0.92rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 223, 207, 0.14), rgba(58, 184, 255, 0.1));
  color: #d7fff9;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(25, 223, 207, 0.12);
}

.page-section--dark .tag {
  background: rgba(25, 223, 207, 0.1);
  color: #d7fff9;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 18, 14, 0.94);
    border: 1px solid rgba(25, 223, 207, 0.16);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

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

  .site-nav__links,
  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links a,
  .site-nav__links button,
  .site-header__actions .btn {
    width: 100%;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-header__inner {
    min-height: 88px;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .contact-grid,
  .platform-brand-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .page-hero__visual {
    min-height: auto;
  }

  .grid--4,
  .grid--3,
  .logo-grid,
  .segment-grid,
  .case-grid,
  .service-grid,
  .insight-grid,
  .kpi-band,
  .platform-links,
  .platform-selector-grid,
  .platform-modal__options,
  .contact-channel-grid,
  .contact-form-highlights,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(25, 223, 207, 0.12), transparent 20%),
      radial-gradient(circle at 90% 6%, rgba(58, 184, 255, 0.1), transparent 18%),
      linear-gradient(180deg, #04100d 0%, #081814 100%);
  }

  .hero,
  .page-hero {
    padding-top: 2.5rem;
  }

  .brand__mark--header {
    width: 66px;
    height: 66px;
  }

  .brand__text--header strong {
    font-size: 1.55rem;
    letter-spacing: 0.14em;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero__stats,
  .metrics,
  .grid--2,
  .grid--3,
  .grid--4,
  .logo-grid,
  .segment-grid,
  .case-grid,
  .service-grid,
  .insight-grid,
  .kpi-band,
  .platform-links,
  .platform-selector-grid,
  .platform-modal__options,
  .contact-channel-grid,
  .contact-form-highlights,
  .gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card--main,
  .page-hero__media {
    position: relative;
    width: 100%;
  }

  .hero-card--main > img,
  .page-hero__media,
  .media-panel img {
    min-height: 360px;
    height: 360px;
  }

  .floating-panel,
  .page-hero__note,
  .media-panel__overlay,
  .gallery__caption {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    width: 100%;
    max-width: none;
  }

  .hero__visual,
  .page-hero__visual,
  .media-panel {
    min-height: auto;
  }

  .hero-card--main::before,
  .hero-card--main::after,
  .media-panel::before,
  .media-panel::after {
    height: 360px;
  }

  .gallery__item,
  .gallery__item--tall {
    grid-template-rows: 260px auto;
  }

  .gallery__item img,
  .gallery__item--tall img {
    height: 260px;
  }

  .gallery__item::before,
  .gallery__item::after,
  .gallery__item--tall::before,
  .gallery__item--tall::after {
    height: 260px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .platform-modal__dialog {
    margin-top: 6vh;
    padding: 1.35rem;
  }

  .platform-selector-card--avant,
  .platform-selector-card--valor,
  .platform-selector-card--braspine {
    margin-top: 0;
  }
}
