:root {
  --bg: #070c16;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(148, 163, 184, 0.18);
  --primary: #1aa7d1;
  --primary-2: #0f4c81;
  --shadow: 0 30px 80px rgba(2, 6, 23, 0.42);
  --shadow-soft: 0 18px 50px rgba(2, 6, 23, 0.34);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-h: 72px;
  --safe-x: max(16px, env(safe-area-inset-left));
  --safe-x-r: max(16px, env(safe-area-inset-right));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --grid: rgba(148, 163, 184, 0.08);
  --glow: rgba(26, 167, 209, 0.26);
  --glow-2: rgba(80, 201, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background:
    radial-gradient(circle at 18% 12%, rgba(26, 167, 209, 0.22) 0%, rgba(26, 167, 209, 0) 44%),
    radial-gradient(circle at 76% 14%, rgba(15, 76, 129, 0.22) 0%, rgba(15, 76, 129, 0) 48%),
    radial-gradient(circle at 54% 96%, rgba(26, 167, 209, 0.12) 0%, rgba(26, 167, 209, 0) 52%),
    linear-gradient(180deg, rgba(7, 12, 22, 1) 0%, rgba(10, 16, 30, 1) 48%, rgba(7, 12, 22, 1) 100%);
  min-height: 100svh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -24vmax;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(52px);
  z-index: -1;
}

body::before {
  mix-blend-mode: screen;
}

body::after {
  mix-blend-mode: screen;
}

body > :not(.fx-overlay) {
  position: relative;
  z-index: 1;
}

.fx-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fx-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 10%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 62%);
}

.fx-overlay::after {
  content: "";
  position: absolute;
  inset: -120px 0;
  opacity: 0.22;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0) 62%);
  transform: translateX(-65%);
  animation: scan 12s var(--ease) infinite;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
}

@keyframes scan {
  0% {
    transform: translateX(-65%);
  }
  100% {
    transform: translateX(65%);
  }
}

body::before {
  background: radial-gradient(circle at 30% 30%, rgba(26, 167, 209, 1) 0%, rgba(26, 167, 209, 0) 60%);
  animation: floatA 18s var(--ease) infinite alternate;
}

body::after {
  background: radial-gradient(circle at 70% 60%, rgba(15, 76, 129, 1) 0%, rgba(15, 76, 129, 0) 58%);
  animation: floatB 22s var(--ease) infinite alternate;
}

@keyframes floatA {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 4%, 0) scale(1.1);
  }
}

@keyframes floatB {
  0% {
    transform: translate3d(3%, 2%, 0) scale(1.02);
  }
  100% {
    transform: translate3d(-3%, -3%, 0) scale(1.12);
  }
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--bg);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 50;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - (var(--safe-x) + var(--safe-x-r))));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 12, 22, 0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  overflow: hidden;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(26, 167, 209, 0.2) 0%, rgba(26, 167, 209, 0.95) 40%, rgba(80, 201, 255, 0.55) 70%, rgba(26, 167, 209, 0.1) 100%);
  box-shadow: 0 0 18px rgba(26, 167, 209, 0.26);
  transform-origin: left center;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 167, 209, 0) 0%, rgba(26, 167, 209, 0.7) 40%, rgba(80, 201, 255, 0.35) 60%, rgba(26, 167, 209, 0) 100%);
  opacity: 0.75;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 167, 206, 0.9) 0%, rgba(25, 167, 206, 0) 50%),
    radial-gradient(circle at 70% 30%, rgba(15, 76, 129, 0.92) 0%, rgba(15, 76, 129, 0) 56%),
    linear-gradient(135deg, rgba(7, 12, 22, 1) 0%, rgba(15, 76, 129, 1) 52%, rgba(26, 167, 209, 1) 100%);
  box-shadow: 0 18px 34px rgba(26, 167, 209, 0.2);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(26, 167, 209, 0.22) 0%, rgba(26, 167, 209, 0) 60%);
  filter: blur(2px);
  opacity: 0.9;
}

.brand-name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.nav-toggle:active {
  transform: translateY(1px);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(25, 167, 206, 0.35);
  outline-offset: 2px;
}

.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 2px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-panel {
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 560;
  padding: 12px 12px;
  border-radius: 12px;
  transition:
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: rgba(26, 167, 209, 0.14);
  border: 1px solid rgba(26, 167, 209, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background 240ms var(--ease),
    border-color 240ms var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(15, 76, 129, 1) 0%, rgba(26, 167, 209, 1) 100%);
  color: #fff;
  box-shadow: 0 22px 60px rgba(26, 167, 209, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 28px 70px rgba(26, 167, 209, 0.32);
  transform: translateY(-1px);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 55%);
  transition: opacity 240ms var(--ease);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.link {
  color: rgba(26, 167, 209, 0.98);
  text-decoration: none;
  font-weight: 650;
}

.link:hover {
  text-decoration: underline;
}

[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.hero {
  padding: clamp(44px, 6vw, 76px) 0 clamp(36px, 5vw, 62px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(26, 167, 209, 0.2) 0%, rgba(26, 167, 209, 0) 58%),
    radial-gradient(circle at 85% 20%, rgba(15, 76, 129, 0.2) 0%, rgba(15, 76, 129, 0) 58%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.hero-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: var(--shadow-soft);
}

.badge dt {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.badge dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(26, 167, 209, 0.22), rgba(255, 255, 255, 0.06), rgba(15, 76, 129, 0.18));
  opacity: 0.8;
  mix-blend-mode: screen;
}

.hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 22, 0) 20%, rgba(7, 12, 22, 0.65) 100%);
}

.hero-media {
  transform-style: preserve-3d;
}

.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  background: rgba(7, 12, 22, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 14px 14px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-card-text {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(52px, 7vw, 78px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 950px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.04);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  transition: transform 240ms var(--ease);
}

.faq-item[open] .faq-summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 18px 18px;
}

.template-box {
  border: 1px dashed rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.template-line {
  margin: 0;
  padding: 8px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.template-line + .template-line {
  margin-top: 8px;
}

.fab-wa {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 167, 209, 0.26);
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.85) 0%, rgba(26, 167, 209, 0.85) 100%);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.5);
  transform: translateY(0);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.fab-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.58);
}

.fab-wa-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.35);
}

.low-end .fab-wa {
  box-shadow: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cta-band {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.cta-band-text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-stat {
  padding: 18px;
}

.proof-kpi {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.proof-label {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.logo-pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.testimonial-quote {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.testimonial-meta {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    border-color 240ms var(--ease),
    background 240ms var(--ease);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 167, 209, 0.22);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 30% 10%, rgba(26, 167, 209, 0.22) 0%, rgba(26, 167, 209, 0) 55%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(from 180deg, rgba(26, 167, 209, 0) 0deg, rgba(26, 167, 209, 0.28) 40deg, rgba(255, 255, 255, 0.12) 60deg, rgba(26, 167, 209, 0) 120deg);
  opacity: 0;
  filter: blur(12px);
  transform: rotate(0deg);
  transition: opacity 240ms var(--ease);
}

.card:hover::after {
  opacity: 0.85;
  animation: spin 4.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card-top {
  min-height: 156px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(26, 167, 209, 0.14);
  border: 1px solid rgba(26, 167, 209, 0.22);
  font-size: 18px;
}

.card-title {
  margin: 14px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(2, 6, 23, 0.4);
  transform: translateY(0);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 50% 0%, rgba(26, 167, 209, 0.18) 0%, rgba(26, 167, 209, 0) 55%);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-2px);
}

.gallery-item:active {
  transform: translateY(0) scale(0.99);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.lightbox-image {
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.lightbox-panel {
  position: relative;
  width: min(980px, calc(100% - 16px));
  background: rgba(7, 12, 22, 0.78);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
  padding: 14px;
  transform: translateY(10px) scale(0.99);
  opacity: 0;
  transition:
    transform 220ms var(--ease),
    opacity 220ms var(--ease);
}

.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lightbox-caption {
  margin: 10px 6px 6px;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.video-frame {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-frame {
  position: relative;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(26, 167, 209, 0.22), rgba(255, 255, 255, 0.05), rgba(15, 76, 129, 0.18));
  opacity: 0.7;
  mix-blend-mode: screen;
}

.video-embed {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-shell {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.video-poster {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.video-play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.video-hint {
  position: absolute;
  left: 84px;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.video-noscript {
  margin: 12px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
}

.contact-cta {
  display: grid;
  place-items: start;
}

.contact-cta-card {
  width: 100%;
  padding: 18px;
}

.template-box {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.template-line {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.template-line:first-child {
  margin-top: 0;
}

.contact-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.form {
  padding: 18px;
}

.form-row {
  margin-top: 14px;
}

.form-row:first-child {
  margin-top: 0;
}

.form-row.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  color: rgba(255, 255, 255, 0.92);
}

.input:hover {
  border-color: rgba(26, 167, 209, 0.38);
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.input:focus {
  border-color: rgba(26, 167, 209, 0.62);
  box-shadow: 0 0 0 4px rgba(26, 167, 209, 0.16);
}

.textarea {
  resize: vertical;
}

.hint {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(220, 38, 38, 0.9);
  min-height: 18px;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card {
  padding: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.contact-value {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-gallery img {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-footer {
  background: rgba(7, 12, 22, 0.72);
  color: rgba(255, 255, 255, 0.86);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.footer-brand {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-text {
  margin: 10px 0 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin: 2px 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.site-footer .link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.site-footer .link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 26px;
  padding-top: 16px;
}

.footer-small {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 820px) {
  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    left: var(--safe-x);
    right: var(--safe-x-r);
    top: var(--header-h);
    width: auto;
    background: rgba(7, 12, 22, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease),
      visibility 0ms linear 220ms;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease),
      visibility 0ms;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-panel .nav-link {
    width: 100%;
    padding: 14px 14px;
  }
}

@media (max-width: 420px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

section {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 540px) {
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after {
    animation: none;
  }

  .fx-overlay::after {
    animation: none;
  }

  .btn,
  .gallery-item,
  .nav-link {
    transition: none;
  }

  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-data: reduce), (update: slow) {
  body::before,
  body::after {
    filter: blur(30px);
    opacity: 0.16;
  }

  .fx-overlay::before {
    opacity: 0.28;
  }

  .fx-overlay::after {
    display: none;
  }

  .card,
  .gallery-item {
    box-shadow: none;
  }
}

.low-end body::before,
.low-end body::after {
  display: none;
}

.low-end .fx-overlay {
  display: none;
}

.low-end .hero-image {
  transform: none !important;
  filter: none;
}

.low-end .site-header,
.low-end .hero-card {
  backdrop-filter: none;
}

.low-end .card,
.low-end .gallery-item,
.low-end .hero-media,
.low-end .video-frame {
  box-shadow: none;
}

