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

:root {
  --bg: #10153d;
  --bg-soft: #1b2366;
  --surface: #2a358f;
  --surface-2: #5f6ede;
  --sand: #ffe4cd;
  --sand-deep: #ff9835;
  --paper: #f4f7ff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 21, 61, 0.14);
  --text: #11183f;
  --text-soft: #5a648c;
  --white: #ffffff;
  --accent: #f28526;
  --accent-strong: #d86615;
  --success: #7583e3;
  --shadow-xl: 0 32px 80px rgba(16, 21, 61, 0.3);
  --shadow-lg: 0 20px 50px rgba(27, 35, 102, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(6, 10, 30, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

body.nav-open::before {
  opacity: 1;
  visibility: visible;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(95, 110, 222, 0.1), transparent 26%),
    var(--paper);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: relative;
  z-index: 20;
  background: rgba(16, 21, 61, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.topbar__item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__item a {
  color: var(--white);
}

.topbar__separator {
  color: rgba(255, 255, 255, 0.56);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-links--topbar,
.social-links--footer {
  margin-top: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  border: 1px solid rgba(42, 53, 143, 0.12);
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(199, 116, 61, 0.12);
  border-color: rgba(199, 116, 61, 0.34);
}

.social-link--compact {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.topbar .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.topbar .social-link:hover,
.topbar .social-link:focus-visible,
.footer .social-link:hover,
.footer .social-link:focus-visible {
  background: rgba(199, 116, 61, 0.18);
  border-color: rgba(214, 185, 138, 0.34);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(10, 14, 39, 0.94), rgba(16, 21, 61, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(10, 14, 39, 0.2);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header.is-scrolled {
  background: rgba(10, 14, 39, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(10, 14, 39, 0.28);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  transition: padding 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 8px 14px 8px 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand__logo {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 14px 24px rgba(8, 16, 53, 0.28));
  transition: width 180ms ease, filter 180ms ease;
}

.brand__text {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
  transition: color 180ms ease;
}

.brand__text strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand__text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav a {
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav__link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--sand-deep));
  box-shadow: 0 0 0 4px rgba(242, 133, 38, 0.12);
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--sand-deep));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav__link.is-active {
  padding-left: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px rgba(8, 16, 53, 0.18);
}

.nav__link.is-active::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 11px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header.is-scrolled .header__content {
  padding: 10px 0;
}

.header.is-scrolled .brand {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.header.is-scrolled .brand__logo {
  width: 64px;
  filter: drop-shadow(0 16px 26px rgba(8, 16, 53, 0.34));
}

.header.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 28px rgba(8, 16, 53, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--solid {
  background: linear-gradient(135deg, var(--accent), var(--sand-deep));
  color: var(--bg);
  box-shadow: 0 18px 35px rgba(242, 133, 38, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost-dark {
  border-color: rgba(42, 53, 143, 0.16);
  color: var(--accent-strong);
  background: rgba(42, 53, 143, 0.04);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  --pointer-x: 62%;
  --pointer-y: 24%;
  padding: 42px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 133, 38, 0.28), transparent 22%),
    radial-gradient(circle at 18% 26%, rgba(95, 110, 222, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(16, 21, 61, 0.98), rgba(27, 35, 102, 1));
}

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

.hero::before {
  top: 96px;
  left: 0;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 110, 222, 0.18), transparent 66%);
}

.hero::after {
  right: -10vw;
  bottom: -18vw;
  width: 44vw;
  height: 44vw;
  border-radius: 38% 62% 41% 59%;
  background: radial-gradient(circle, rgba(242, 133, 38, 0.18), transparent 70%);
}

.hero__fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__fx-grid,
.hero__fx-glow,
.hero__fx-ring {
  position: absolute;
  inset: 0;
}

.hero__fx-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 85%);
  opacity: 0.4;
}

.hero__fx-glow {
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(95, 110, 222, 0.35), transparent 22%);
  transition: background-position 180ms ease;
}

.hero__fx-glow--orange {
  background: radial-gradient(circle at 78% 22%, rgba(242, 133, 38, 0.24), transparent 24%);
  animation: pulseDrift 8s ease-in-out infinite;
}

.hero__fx-ring {
  width: 52vw;
  height: 52vw;
  left: 54%;
  top: -6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 24px rgba(255, 255, 255, 0.02),
    0 0 0 72px rgba(255, 255, 255, 0.015);
  opacity: 0.5;
  animation: spinSlow 24s linear infinite;
}

.hero__scenes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__scene {
  position: absolute;
  inset: -4%;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 900ms ease,
    transform 5200ms ease;
}

.hero__scene.is-active {
  opacity: 0.95;
  transform: scale(1);
}

.hero__scene::before,
.hero__scene::after {
  content: "";
  position: absolute;
}

.hero__scene::after {
  width: min(24vw, 260px);
  height: min(24vw, 260px);
  right: 10%;
  top: 18%;
  background: url("../assets/logo-cpg.svg") center / contain no-repeat;
  opacity: 0.08;
  filter: drop-shadow(0 18px 28px rgba(7, 13, 42, 0.18));
}

.hero__scene--one {
  background:
    radial-gradient(circle at 76% 24%, rgba(242, 133, 38, 0.22), transparent 18%),
    radial-gradient(circle at 18% 24%, rgba(95, 110, 222, 0.14), transparent 22%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.04), transparent 38%);
}

.hero__scene--one::before {
  top: 18%;
  right: 8%;
  width: min(38vw, 520px);
  height: 58%;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(242, 133, 38, 0.12), rgba(95, 110, 222, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 60px rgba(10, 14, 39, 0.18);
  transform: rotate(-7deg);
}

.hero__scene--two {
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 152, 53, 0.24), transparent 20%),
    radial-gradient(circle at 28% 78%, rgba(95, 110, 222, 0.18), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 40%);
}

.hero__scene--two::before {
  left: 54%;
  top: 14%;
  width: min(34vw, 470px);
  height: 62%;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(12, 18, 54, 0.18), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(242, 133, 38, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(10, 14, 39, 0.22);
  transform: rotate(8deg);
}

.hero__scene--three {
  background:
    radial-gradient(circle at 76% 18%, rgba(242, 133, 38, 0.16), transparent 18%),
    radial-gradient(circle at 22% 26%, rgba(95, 110, 222, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 34%);
}

.hero__scene--three::before {
  right: 4%;
  bottom: 10%;
  width: min(42vw, 560px);
  height: 42%;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(242, 133, 38, 0.14), rgba(95, 110, 222, 0.06)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 56px rgba(10, 14, 39, 0.18);
  transform: rotate(-14deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 46px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.hero.hero--primed .hero__content {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.hero.hero--primed .hero__panel {
  opacity: 0;
  transform: translate3d(28px, 34px, 0) scale(0.985);
}

.hero.hero--primed .hero__content,
.hero.hero--primed .hero__panel {
  transition:
    opacity 560ms cubic-bezier(0.2, 0.9, 0.22, 1),
    transform 560ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.hero.hero--primed.hero--entered .hero__content,
.hero.hero--primed.hero--entered .hero__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero__content > * {
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.hero.hero--primed .hero__content > *:not(.hero__stats) {
  opacity: 0;
  transform: translateY(18px);
}

.hero.hero--primed .hero__stats {
  opacity: 0;
}

.hero.hero--primed.hero--entered .hero__content > *:not(.hero__stats) {
  opacity: 1;
  transform: translateY(0);
}

.hero.hero--primed.hero--entered .hero__stats {
  opacity: 1;
}

.hero.hero--primed .hero__seal {
  transition-delay: 30ms;
}

.hero.hero--primed .eyebrow,
.hero.hero--primed h1 {
  transition-delay: 90ms;
}

.hero.hero--primed .hero__lead {
  transition-delay: 140ms;
}

.hero.hero--primed .hero__actions {
  transition-delay: 180ms;
}

.hero.hero--primed .hero__mobile-commercial,
.hero.hero--primed .hero__chips {
  transition-delay: 220ms;
}

.hero.hero--primed .hero__stats {
  transition: opacity 520ms ease 260ms;
}

.hero.hero--primed .hero__panel > * {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 420ms ease, filter 420ms ease;
}

.hero.hero--primed.hero--entered .hero__panel > * {
  opacity: 1;
  filter: blur(0);
}

.hero.hero--primed .hero-card--primary {
  transition-delay: 120ms;
}

.hero.hero--primed .hero-card--secondary {
  transition-delay: 200ms;
}

.hero.hero--primed .hero-diagram {
  transition-delay: 260ms;
}

.hero__seal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(9, 13, 36, 0.24);
  backdrop-filter: blur(12px);
}

.hero__seal-logo {
  width: 62px;
  height: auto;
  flex-shrink: 0;
}

.hero__seal-copy strong,
.hero__seal-copy span {
  display: block;
}

.hero__seal-copy strong {
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.96rem;
}

.hero__seal-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__seal-note {
  color: var(--sand-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sand-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(42, 53, 143, 0.06);
  border-color: rgba(42, 53, 143, 0.12);
  color: var(--accent-strong);
}

.hero h1,
.section-heading h2,
.detail-intro h2,
.coverage-copy h2,
.contact-copy h2 {
  margin: 20px 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.hero__lead,
.section-heading p,
.detail-intro p,
.coverage-copy p,
.contact-copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__mobile-commercial {
  display: none;
}

.hero__mobile-offer {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(9, 13, 36, 0.2);
  backdrop-filter: blur(12px);
}

.hero__mobile-offer strong,
.hero__mobile-offer span {
  display: block;
}

.hero__mobile-offer strong {
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.hero__mobile-offer span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero__mobile-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.hero__mobile-proof span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__chips span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.stat-card__number {
  font-size: 1.85rem;
  line-height: 1;
}

.stat-card strong small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-card::after,
.service-card::after,
.project-card::after,
.presentation-card::after,
.report-card::after,
.gallery-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -20%;
  width: 60%;
  height: 240%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
  pointer-events: none;
}

.hero-card:hover::after,
.service-card:hover::after,
.project-card:hover::after,
.presentation-card:hover::after,
.report-card:hover::after,
.gallery-card:hover::after,
.contact-form:hover::after {
  opacity: 1;
  transform: rotate(18deg) translateX(180%);
}

.hero-card--primary {
  background:
    linear-gradient(160deg, rgba(247, 243, 235, 0.98), rgba(237, 226, 207, 0.94));
}

.hero-card--secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(160deg, rgba(27, 35, 102, 1), rgba(16, 21, 61, 1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-showcase {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
}

.hero-showcase__visuals {
  position: relative;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(6, 12, 38, 0.18);
}

.hero-showcase__visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 420ms ease,
    transform 900ms ease;
}

.hero-showcase__visual.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-showcase__stage {
  position: relative;
  min-height: 238px;
  display: block;
  overflow: hidden;
  will-change: height;
  transition: height 320ms ease, min-height 320ms ease;
}

.hero-showcase__item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.hero-showcase__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-showcase__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-showcase h3 {
  margin: 0;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  line-height: 1.14;
  text-wrap: balance;
}

.hero-showcase p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.62;
}

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

.hero-showcase__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.hero-showcase__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.hero-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 10px 14px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-showcase__button:hover,
.hero-showcase__button:focus-visible {
  transform: translateY(-1px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-showcase__button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(242, 133, 38, 0.2), rgba(255, 255, 255, 0.06));
  border-color: rgba(242, 133, 38, 0.3);
  box-shadow: 0 14px 28px rgba(8, 16, 53, 0.18);
}

.hero-showcase__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.hero-showcase__button.is-active .hero-showcase__dot {
  background: var(--sand-deep);
  box-shadow: 0 0 0 6px rgba(242, 133, 38, 0.12);
}

.section-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 52px;
}

.section-showcase__copy,
.section-showcase__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.section-showcase__copy {
  padding: 34px 32px;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 235, 0.92));
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.section-showcase__copy::after,
.section-showcase__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-showcase__copy::after {
  background:
    linear-gradient(90deg, rgba(42, 53, 143, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(42, 53, 143, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 70%);
}

.section-showcase__panel::after {
  inset: -30% auto auto -18%;
  width: 52%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 72%);
  opacity: 0.38;
}

.section-showcase__copy > *,
.section-showcase__panel > * {
  position: relative;
  z-index: 1;
}

.section-showcase__copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--text);
}

.section-showcase__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.section-showcase__stat {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(16, 21, 61, 0.04);
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.section-showcase__stat strong {
  display: block;
  color: var(--accent-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
}

.section-showcase__stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-showcase__panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(27, 35, 102, 1), rgba(16, 21, 61, 1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-showcase--section {
  gap: 20px;
}

.hero-showcase--section .hero-showcase__visuals {
  min-height: 250px;
}

.hero-showcase--section .hero-showcase__stage {
  min-height: 214px;
}

.hero-card__label,
.detail-panel__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card__label {
  color: var(--accent-strong);
}

.hero-card__label::before,
.detail-panel__title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.hero-card h2 {
  margin: 16px 0 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.16;
  color: var(--text);
}

.hero-card__list {
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--text-soft);
}

.hero-card__list li + li {
  margin-top: 10px;
}

.metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric__value {
  display: block;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.38rem;
}

.metric__label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.hero-diagram {
  position: absolute;
  right: -10px;
  bottom: 24px;
  width: 180px;
  height: 180px;
  opacity: 0.72;
}

.hero-diagram__line {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  transform: rotate(12deg);
}

.hero-diagram__line:nth-child(2) {
  inset: 18px;
  transform: rotate(-8deg);
}

.hero-diagram__line:nth-child(3) {
  inset: 38px;
  transform: rotate(4deg);
}

.hero-diagram__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand-deep);
  box-shadow: 0 0 0 8px rgba(214, 185, 138, 0.1);
}

.hero-diagram__dot--one {
  top: 24px;
  left: 36px;
}

.hero-diagram__dot--two {
  right: 22px;
  top: 78px;
}

.hero-diagram__dot--three {
  left: 78px;
  bottom: 22px;
}

.trust-strip {
  background: rgba(16, 21, 61, 0.04);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-strip__content {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0;
}

.trust-strip__content span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(42, 53, 143, 0.09);
  color: var(--text-soft);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy h2 {
  margin: 20px 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.about-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.about-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  border: 1px solid rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-point {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.about-point strong,
.project-card h3 {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.about-point p {
  margin-top: 8px;
  font-size: 0.98rem;
}

.about-panel {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xl);
}

.about-panel__lead {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.about-panel__quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-panel__quickfacts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-metrics {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.about-metric {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-metric strong {
  display: block;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.about-metric p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.82));
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.about-proof__intro h3 {
  margin: 18px 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-proof__intro p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-soft);
}

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

.about-proof__card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.about-proof__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(242, 133, 38, 1), rgba(95, 110, 222, 0.72));
}

.about-proof__card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  line-height: 1.2;
  color: var(--text);
}

.about-proof__card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-proof__card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.is-section-hidden {
  display: none !important;
}

.section--light {
  background: transparent;
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(214, 185, 138, 0.14), rgba(214, 185, 138, 0.06));
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(242, 133, 38, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(16, 21, 61, 1), rgba(27, 35, 102, 1));
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 44px;
}

.section-heading--left {
  max-width: 680px;
  text-align: left;
  margin: 0;
}

.section-heading h2,
.detail-intro h2,
.coverage-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--text);
}

.section-heading p {
  color: var(--text-soft);
}

.services-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  margin-bottom: 22px;
}

.services-premium__intro,
.services-premium__panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.services-premium__intro {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.84));
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.services-premium__intro h3,
.services-premium__panel h3,
.contact-form__intro h3 {
  margin: 18px 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-premium__intro p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
}

.services-premium__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.services-premium__metric {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(42, 53, 143, 0.05);
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.services-premium__metric strong {
  display: block;
  color: var(--accent-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.services-premium__metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.services-premium__panel {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-premium__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.services-premium__panel h3 {
  color: var(--white);
}

.services-premium__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.services-premium__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(27, 35, 102, 0.18);
}

.service-card__meta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(42, 53, 143, 1), rgba(95, 110, 222, 0.95));
  color: var(--sand-deep);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
}

.service-card__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.service-card__list li {
  position: relative;
  padding-left: 22px;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.service-card__list li + li {
  margin-top: 10px;
}

.service-card__footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.service-card__pill {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.06);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card a {
  display: inline-flex;
  color: var(--accent-strong);
  font-weight: 800;
}

.detail-section .detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.detail-intro,
.detail-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.detail-intro {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-panel--light {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(42, 53, 143, 0.08);
}

.detail-panel--outline {
  background: rgba(42, 53, 143, 0.04);
  border-color: rgba(42, 53, 143, 0.1);
}

.detail-intro p,
.detail-intro li,
.detail-panel,
.detail-panel .tag-list span,
.section--dark .coverage-copy p,
.section--dark .coverage-copy h2 {
  color: rgba(255, 255, 255, 0.82);
}

.section--dark .detail-intro h2,
.section--dark .coverage-copy h2 {
  color: var(--white);
}

.section--sand .detail-intro,
.section--light .detail-panel,
.section--light .detail-intro {
  border-color: rgba(42, 53, 143, 0.08);
}

.section--sand .detail-intro,
.section--light .detail-intro,
.section--sand .detail-panel,
.section--light .detail-panel {
  background: rgba(255, 255, 255, 0.7);
}

.section--sand .detail-intro h2,
.section--light .detail-intro h2,
.section--light .detail-panel,
.section--sand .detail-panel {
  color: var(--text);
}

.section--sand .detail-intro p,
.section--sand .check-list li,
.section--light .detail-intro p,
.section--light .check-list li,
.section--sand .tag-list span,
.section--light .tag-list span {
  color: var(--text-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
}

.check-list--dark li::before {
  background: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tag-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.tag-list--dark span {
  background: rgba(42, 53, 143, 0.06);
  border-color: rgba(42, 53, 143, 0.08);
  color: var(--text);
}

.accordion {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.accordion-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(42, 53, 143, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
  font-size: 1.4rem;
  line-height: 1;
}

.accordion-item[open] summary::after {
  content: "−";
}

.accordion-item__content {
  padding: 0 26px 24px;
  color: var(--text-soft);
}

.accordion-item__content ul {
  margin: 0;
  padding-left: 18px;
}

.accordion-item__content li + li {
  margin-top: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

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

.timeline-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.timeline-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), var(--sand-deep));
  color: var(--bg);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
}

.timeline-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.timeline-card p {
  margin: 0;
  color: var(--text-soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

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

.coverage-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-card strong {
  display: block;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.coverage-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.project-card--portfolio {
  display: grid;
  grid-template-rows: auto 1fr;
}

.project-card__visual {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 200px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(16, 21, 61, 0.88), rgba(42, 53, 143, 0.94));
}

.project-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.project-card--vial .project-card__visual {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.24), transparent 26%),
    linear-gradient(160deg, rgba(16, 21, 61, 0.92), rgba(42, 53, 143, 0.96));
}

.project-card--build .project-card__visual {
  background:
    radial-gradient(circle at top right, rgba(95, 110, 222, 0.26), transparent 30%),
    linear-gradient(160deg, rgba(27, 35, 102, 0.96), rgba(56, 72, 178, 0.92));
}

.project-card--utility .project-card__visual {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(21, 29, 80, 0.96), rgba(32, 51, 122, 0.92));
}

.project-card__visual > * {
  position: relative;
  z-index: 1;
}

.project-card__visual .project-card__meta {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.project-card__visual-title {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__visual-copy {
  color: rgba(255, 255, 255, 0.8) !important;
}

.project-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.project-card__meta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.18;
}

.project-card p {
  margin: 0;
  color: var(--text-soft);
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

.project-card__footer span {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.project-card__footer a {
  color: var(--accent-strong);
  font-weight: 800;
}

.presentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 18px;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.entity-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.entity-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(42, 53, 143, 0.92), rgba(242, 133, 38, 0.92));
}

.entity-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.entity-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.entity-card--accent {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.entity-card--accent span {
  color: rgba(255, 255, 255, 0.78);
}

.presentation-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.presentation-card h3,
.document-card h3,
.gallery-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.18;
}

.presentation-card p,
.document-card p {
  margin: 0;
  color: var(--text-soft);
}

.presentation-card--featured {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.presentation-card--featured p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 22px;
}

.presentation-card--featured .project-card__meta,
.document-card--featured .project-card__meta {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.presentation-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.presentation-list li + li {
  margin-top: 10px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.document-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.document-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.document-card--featured p {
  color: rgba(255, 255, 255, 0.76);
}

.document-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.document-card__tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.document-card--featured .document-card__tags span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.reports-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 20px;
  margin-bottom: 22px;
}

.reports-premium__summary,
.reports-premium__stats {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.reports-premium__summary {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(42, 53, 143, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reports-premium__summary h3 {
  margin: 18px 0 12px;
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.reports-premium__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reports-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.reports-premium__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.86));
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.reports-premium__stat {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(42, 53, 143, 0.05);
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.reports-premium__stat strong {
  display: block;
  color: var(--accent-strong);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.reports-premium__stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

.report-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.report-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.98));
}

.report-card__visual {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(16, 21, 61, 0.92), rgba(42, 53, 143, 0.96));
}

.report-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.report-card--field .report-card__visual {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.24), transparent 26%),
    linear-gradient(160deg, rgba(16, 21, 61, 0.94), rgba(42, 53, 143, 0.98));
}

.report-card--lab .report-card__visual {
  background:
    radial-gradient(circle at top right, rgba(95, 110, 222, 0.24), transparent 30%),
    linear-gradient(160deg, rgba(27, 35, 102, 0.96), rgba(56, 72, 178, 0.92));
}

.report-card--production .report-card__visual {
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(21, 29, 80, 0.96), rgba(32, 51, 122, 0.92));
}

.report-card__visual > * {
  position: relative;
  z-index: 1;
}

.report-card__visual .project-card__meta {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.report-card__date {
  color: var(--white);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.12rem;
}

.report-card__headline {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem;
}

.report-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.report-card--featured .report-card__visual {
  min-height: 220px;
}

.report-card h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.24rem;
  line-height: 1.2;
}

.report-card__project {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
}

.report-card__location {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.report-card__info {
  color: var(--text);
  font-size: 0.95rem;
}

.report-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-card__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.report-list li + li {
  margin-top: 10px;
}

.report-card__evidence {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/logo-cpg.svg");
  background-repeat: no-repeat;
  background-position: right -20px bottom -24px;
  background-size: 150px;
  opacity: 0.16;
  pointer-events: none;
}

.gallery-card > * {
  position: relative;
  z-index: 1;
}

.gallery-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card h3 {
  color: var(--white);
  font-size: 1.32rem;
}

.gallery-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-card--brand {
  background:
    linear-gradient(160deg, rgba(16, 21, 61, 0.96), rgba(42, 53, 143, 1));
}

.gallery-card--aggregate {
  background:
    linear-gradient(160deg, rgba(42, 53, 143, 1), rgba(95, 110, 222, 0.95));
}

.gallery-card--concrete {
  background:
    linear-gradient(160deg, rgba(242, 133, 38, 0.92), rgba(216, 102, 21, 1));
}

.gallery-card--asphalt {
  background:
    linear-gradient(160deg, rgba(16, 21, 61, 1), rgba(216, 102, 21, 0.92));
}

.section--contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(242, 133, 38, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 235, 0.86));
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-cta strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.16;
  color: var(--text);
}

.contact-cta p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

.contact-points div {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 53, 143, 0.08);
}

.contact-points strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 53, 143, 0.08);
  box-shadow: var(--shadow-lg);
}

.contact-form__intro {
  grid-column: 1 / -1;
  padding: 6px 0 8px;
}

.contact-form__intro p {
  margin: 0;
  color: var(--text-soft);
}

.contact-form__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-form__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(42, 53, 143, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(42, 53, 143, 0.12);
  background: rgba(244, 247, 255, 0.95);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(242, 133, 38, 0.22);
  border-color: rgba(242, 133, 38, 0.5);
}

.contact-form__full,
.contact-form button {
  grid-column: 1 / -1;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 28px;
  background: #0c1236;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(95, 110, 222, 0.18), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(242, 133, 38, 0.14), transparent 24%);
  pointer-events: none;
}

.footer__content {
  position: relative;
  z-index: 1;
}

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

.brand--footer .brand__logo {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.18));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(14px);
}

.footer__column {
  display: grid;
  align-content: start;
  min-width: 0;
  gap: 16px;
}

.footer__column--brand {
  gap: 18px;
}

.footer__eyebrow {
  color: var(--sand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__stack {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer__stack a,
.footer__stack span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer__stack a,
.footer__bottom-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer__stack a:hover,
.footer__stack a:focus-visible,
.footer__bottom-links a:hover,
.footer__bottom-links a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

.footer__stack--contact span {
  color: rgba(255, 255, 255, 0.7);
}

.footer__note {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer__cta {
  width: fit-content;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px 0;
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 56ch;
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.footer .social-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c15e, #10a74f);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(10, 167, 79, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
}

.floating-whatsapp__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.floating-whatsapp__icon svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp__text {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.floating-whatsapp__ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: inherit;
  opacity: 0.34;
  animation: whatsappPulse 2.8s ease-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

[data-float-card] {
  animation: floatCard 7s ease-in-out infinite;
  will-change: transform;
}

.hero__stats .stat-card:nth-child(2),
.presentation-card--featured {
  animation-delay: 1.2s;
}

.hero__stats .stat-card:nth-child(3) {
  animation-delay: 2.1s;
}

@keyframes pulseDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, 3%, 0) scale(1.06);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.34;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .services-premium,
  .reports-premium,
  .contact-points {
    grid-template-columns: 1fr;
  }

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

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

  .about-proof__card:last-child {
    grid-column: span 2;
  }

  .section-showcase {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .coverage-stats,
  .entity-grid,
  .presentation-grid,
  .documents-grid,
  .reports-grid,
  .gallery-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-card--featured,
  .report-card--featured {
    grid-column: span 2;
  }

  .about-grid,
  .about-proof,
  .hero__grid,
  .process-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero__panel {
    max-width: 720px;
  }

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

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(12, 17, 49, 0.98), rgba(16, 21, 61, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 60px rgba(5, 9, 30, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav::before {
    content: "Navegación";
    display: block;
    padding: 0 2px 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

  body.nav-open {
    overflow: hidden;
  }

  .nav__link {
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .nav__link::before {
    left: auto;
    right: 16px;
  }

  .nav__link::after {
    left: 18px;
    right: 18px;
    bottom: 10px;
  }

  .nav__link.is-active {
    padding-left: 18px;
    background:
      linear-gradient(135deg, rgba(242, 133, 38, 0.22), rgba(255, 255, 255, 0.08));
    border-color: rgba(242, 133, 38, 0.24);
  }

  .nav .button {
    width: 100%;
    margin-top: 4px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 74px;
  }

  .hero__stats,
  .trust-strip__content,
  .timeline,
  .entity-grid,
  .presentation-grid,
  .documents-grid,
  .reports-grid,
  .gallery-grid,
  .project-grid,
  .about-proof__grid,
  .services-premium__metrics,
  .reports-premium__stats,
  .contact-form,
  .service-grid,
  .coverage-stats,
  .section-showcase__stats,
  .hero-card--secondary,
  .about-grid,
  .detail-section .detail-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .about-proof__card:last-child {
    grid-column: span 1;
  }

  .project-card__footer,
  .reports-premium__actions,
  .contact-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__fx-ring {
    width: 82vw;
    height: 82vw;
    left: 42%;
    top: -2%;
  }

  .hero__scene::after {
    width: 180px;
    height: 180px;
    right: 4%;
    top: 14%;
  }

  .hero__scene--one::before,
  .hero__scene--two::before,
  .hero__scene--three::before {
    width: min(54vw, 420px);
  }

  .hero h1,
  .section-heading h2,
  .detail-intro h2,
  .coverage-copy h2,
  .contact-copy h2 {
    max-width: none;
  }

  .hero__lead {
    font-size: 1rem;
    max-width: 38ch;
  }

  .hero__seal {
    width: 100%;
    max-width: 520px;
  }

  .hero__content {
    display: grid;
    gap: 14px;
  }

  .hero__content > * {
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .hero__actions {
    margin-top: 2px;
  }

  .hero__mobile-commercial {
    display: block;
  }

  .hero__chips {
    gap: 10px;
  }

  .hero__chips span {
    font-size: 0.86rem;
  }

  .hero__panel {
    gap: 14px;
  }

  .hero-showcase__stage {
    min-height: 320px;
  }

  .hero-showcase__visuals {
    min-height: 200px;
  }

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

  .hero-showcase__button {
    width: 100%;
    min-height: 54px;
    padding: 10px 12px;
  }

  .hero-showcase--section .hero-showcase__visuals {
    min-height: 220px;
  }

  .hero-showcase--section .hero-showcase__stage {
    min-height: 312px;
  }

  .hero-showcase--section .hero-showcase__controls {
    margin-top: 8px;
  }

  .document-card--featured,
  .report-card--featured {
    grid-column: span 1;
  }

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

  .footer__column,
  .footer__column--brand {
    justify-items: start;
  }

  .footer__bottom-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  section[id] {
    scroll-margin-top: 104px;
  }

  .topbar__content {
    gap: 10px 12px;
  }

  .topbar__item,
  .topbar__socials {
    justify-content: center;
  }

  .section-showcase {
    margin-bottom: 38px;
  }

  .section-showcase__copy,
  .section-showcase__panel {
    padding: 24px 20px;
  }

  .section-showcase__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header__content {
    padding: 14px 0;
  }

  .brand__logo {
    width: 58px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 56px;
  }

  .hero-card,
  .detail-intro,
  .detail-panel,
  .timeline-card,
  .contact-form,
  .service-card,
  .coverage-card {
    padding: 22px;
  }

  .hero-card h2 {
    font-size: 1.5rem;
  }

  .hero__seal {
    display: none;
  }

  .button {
    width: 100%;
  }

  .footer__grid {
    padding: 22px;
  }

  .footer__cta,
  .floating-whatsapp {
    width: calc(100vw - 32px);
    justify-content: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp__text {
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
    order: 4;
    gap: 10px;
  }

  .hero h1 {
    order: 3;
    max-width: 8ch;
    margin: 0;
    font-size: clamp(2.35rem, 11.5vw, 3.3rem);
  }

  .hero .eyebrow {
    order: 1;
  }

  .hero__actions {
    order: 4;
  }

  .hero__mobile-commercial {
    order: 5;
  }

  .hero__lead {
    order: 6;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero__chips {
    display: none;
  }

  .hero__stats {
    display: none;
  }

  .hero__mobile-offer {
    padding: 16px;
    border-radius: 18px;
  }

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

  .hero__mobile-proof span:first-child {
    grid-column: 1 / -1;
  }

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

  .footer__stack {
    gap: 10px;
  }

  .hero-showcase__visuals {
    min-height: 172px;
  }

  .hero-showcase--section .hero-showcase__visuals {
    min-height: 188px;
  }

  .hero-showcase--section .hero-showcase__stage {
    min-height: 360px;
  }

  .hero-showcase--section .hero-showcase__tags {
    gap: 8px;
  }

  .hero-showcase--section .hero-showcase__tags span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero__panel {
    margin-top: 6px;
  }

  .topbar {
    display: none;
  }

  .accordion-item summary,
  .accordion-item__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
