:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: rgba(15, 23, 42, 0.045);
  --card: rgba(255, 255, 255, 0.88);
  --card-border: rgba(15, 23, 42, 0.12);
  --text: rgba(10, 15, 28, 0.94);
  --muted: rgba(10, 15, 28, 0.72);
  --faint: rgba(10, 15, 28, 0.58);
  --accent: #d19b2a;
  --accent-2: #1b7cff;
  --danger: #d63c3c;

  --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --font-serif: "Merriweather", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(1000px 700px at 10% -10%, rgba(27, 124, 255, 0.09), transparent 60%),
    radial-gradient(900px 700px at 100% 0%, rgba(209, 155, 42, 0.1), transparent 55%),
    radial-gradient(900px 700px at 60% 110%, rgba(27, 124, 255, 0.06), transparent 55%), var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

code {
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.045);
  font-size: 0.92em;
}

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

:focus-visible {
  outline: 3px solid rgba(134, 227, 255, 0.65);
  outline-offset: 3px;
  border-radius: 10px;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  z-index: 100;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.page-loader[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: grid;
  gap: 12px;
  place-items: center;
}

.loader-logo {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
}

.loader-dots {
  display: flex;
  gap: 7px;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.6;
  animation: dotPulse 900ms ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 120ms;
}

.loader-dots span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.95;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, background 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

.floating-whatsapp[hidden] {
  display: none;
}

.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: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  transform: translateY(-200%);
  z-index: 50;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 14, 26, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  --header-text: rgba(255, 255, 255, 0.92);
  --header-muted: rgba(255, 255, 255, 0.72);
  --header-faint: rgba(255, 255, 255, 0.56);
  --header-surface: rgba(255, 255, 255, 0.08);
  --header-surface-2: rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 70px;
  height: 70px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-weight: 1000;
  letter-spacing: 0.2px;
  font-size: 35px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--header-text);
}

.brand-tag {
  font-size: 13px;
  color: var(--header-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--header-muted);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.nav-link:hover {
  background: var(--header-surface);
  color: var(--header-text);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  color: var(--header-text);
  background: var(--header-surface-2);
}

.nav-cta {
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.2), rgba(27, 124, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--header-text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle-bars {
  width: 18px;
  height: 12px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
  display: block;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.nav-toggle-bars::before {
  top: 0;
}

.nav-toggle-bars::after {
  top: 10px;
}

body.nav-open .nav-toggle-bars::before {
  top: 5px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-bars::after {
  top: 5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: 64px 0 28px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.9), rgba(247, 249, 252, 0.55) 45%, rgba(247, 249, 252, 0.2));
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 12% 18%, rgba(209, 155, 42, 0.1), transparent 65%),
    radial-gradient(900px 700px at 88% 20%, rgba(27, 124, 255, 0.1), transparent 60%);
  opacity: 0.7;
  filter: saturate(1.12);
  pointer-events: none;
  animation: drift 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -10px, 0);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin: 0 0 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(134, 227, 255, 0.2));
}

.eyebrow::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.18), rgba(27, 124, 255, 0.14));
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.hero-title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
}

.js .accent {
  animation: accentShift 6.5s ease-in-out infinite;
}

@keyframes accentShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 58ch;
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.22), rgba(27, 124, 255, 0.16));
  border-color: rgba(209, 155, 42, 0.42);
}

.btn-ghost {
  background: transparent;
}

.btn-small {
  padding: 9px 12px;
  min-height: 38px;
  border-radius: 12px;
  font-size: 14px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.trust-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.18), rgba(27, 124, 255, 0.12));
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-kpi {
  font-weight: 700;
  font-size: 18px;
}

.trust-label {
  color: var(--muted);
  font-size: 13px;
}

.hero-media .media-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.badge-title {
  font-weight: 700;
}

.badge-sub {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: rgba(15, 23, 42, 0.03);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.icon-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.icon-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(27, 124, 255, 0.22);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, rgba(27, 124, 255, 0.12), rgba(209, 155, 42, 0.12));
  margin-bottom: 10px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.icon-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.btn-icon {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.image-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.collage-a,
.collage-b,
.collage-c {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.collage-a img,
.collage-b img,
.collage-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-a {
  grid-column: 1 / span 7;
  height: 280px;
}

.collage-stack {
  display: grid;
  grid-column: 8 / span 5;
  gap: 14px;
}

.collage-b {
  height: 132px;
}

.collage-c {
  height: 132px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.grid-center {
  align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(209, 155, 42, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.card-compact {
  padding: 4px;
}

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(27, 124, 255, 0.95);
  font-weight: 600;
}

.card-link:hover {
  text-decoration: underline;
}

.checklist {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

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

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.14), rgba(27, 124, 255, 0.12));
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-weight: 800;
  margin: 0;
}

.feature-text {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tile {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.tile-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.tile-body {
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.14), rgba(27, 124, 255, 0.09));
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.cta-title {
  margin: 0 0 4px;
  font-size: 22px;
}

.cta-text {
  margin: 0;
  color: var(--muted);
}

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

.spacer-12 {
  height: 12px;
}

.spacer-16 {
  height: 16px;
}

.page-hero {
  padding: 40px 0 10px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.page-title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.page-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 17px;
}

.page-hero-media img {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow);
  height: 340px;
  width: 100%;
  object-fit: cover;
}

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

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.stat-kpi {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--muted);
  margin-top: 6px;
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

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

.pill-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.gallery {
  margin: 18px 0 18px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.media-stack {
  display: grid;
  gap: 14px;
}

.stack-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.stack-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-actions {
  margin-top: 14px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  list-style: none;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(10, 15, 28, 0.84);
}

.faq details[open] summary::after {
  content: "–";
}

.faq .faq-body {
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq .faq-body p {
  margin: 0;
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(10, 15, 28, 0.9);
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.22), rgba(27, 124, 255, 0.16));
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.step-title {
  font-weight: 700;
}

.step-text {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.map-frame {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.form {
  overflow: hidden;
}

.form-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 24px;
}

.form-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

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

.field-label {
  font-size: 13px;
  color: var(--muted);
}

.field-input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.field-input::placeholder {
  color: rgba(10, 15, 28, 0.45);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: radial-gradient(900px 600px at 10% 0%, rgba(27, 124, 255, 0.22), transparent 58%),
    radial-gradient(900px 600px at 90% 0%, rgba(209, 155, 42, 0.22), transparent 58%), #0b1220;
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, background 220ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-link {
  display: inline-flex;
  color: rgba(134, 227, 255, 0.9);
  margin-top: 8px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.footer-cta-title {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 22px;
}

.footer-cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.site-footer .btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer .btn-primary {
  border-color: rgba(209, 155, 42, 0.55);
  background: linear-gradient(135deg, rgba(209, 155, 42, 0.24), rgba(27, 124, 255, 0.14));
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .page-loader {
    transition: none;
  }

  .loader-dots span {
    animation: none;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg {
    animation: none;
  }

  .js .accent {
    animation: none;
  }

  .btn,
  .nav-link,
  .card,
  .gallery-item img,
  .icon-card {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy {
    padding: 18px;
  }

  .media-img {
    height: 360px;
  }

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

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

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

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  html.js .nav-toggle {
    display: inline-flex;
  }

  html.js .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    max-height: calc(100vh - 90px);
    overflow: auto;
    max-width: 520px;
    margin-left: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    color: var(--text);
    --header-text: var(--text);
    --header-muted: var(--muted);
    --header-faint: var(--faint);
    --header-surface: rgba(15, 23, 42, 0.05);
    --header-surface-2: rgba(15, 23, 42, 0.06);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    box-shadow: var(--shadow);
  }

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

  html.js body.nav-open {
    overflow: hidden;
  }

  .nav-link {
    width: 100%;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .collage-a {
    grid-column: 1 / -1;
    height: 240px;
  }

  .collage-stack {
    grid-column: 1 / -1;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 520px) {
  .trust-row {
    grid-template-columns: 1fr;
  }

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