:root {
  /* Light theme (default) */
  --bg0: #f7f7f4;
  --bg1: #ffffff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel2: rgba(255, 255, 255, 0.94);
  --border: rgba(2, 6, 23, 0.10);
  --text: rgba(2, 6, 23, 0.92);
  --muted: rgba(2, 6, 23, 0.68);
  --muted2: rgba(2, 6, 23, 0.52);
  --shadow: 0 22px 65px rgba(2, 6, 23, 0.14);

  --blue: #2f6bff;
  --cyan: #27d5ff;
  --amber: #ffb020;
  --good: #37d39a;
  --danger: #ff5572;

  --radius: 18px;
  --radius2: 22px;
  --container: min(1120px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Type scale (Apple-like) */
  --h1: clamp(34px, 5.2vw, 58px);
  --h2: 24px;
  --h3: 15px;
  --body: 16px;
  --small: 13px;
  --tight: 1.06;
  --normal: 1.55;
  --tracking-h1: -0.9px;
  --tracking-h2: -0.35px;

  --spot-x: 50%;
  --spot-y: 12%;
  --scroll-glow-x: 50%;
  --scroll-glow-y: 18%;
  --wow-x: 50%;
  --wow-y: 18%;
  --wow-intensity: 0.28;
  --wow-size: 900px;
  --wow-rot: 0deg;
  --sheen-x: -120%;
  --grid-y: 0px;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 38%, var(--bg0) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-color: rgba(72, 198, 255, 0.35);
  text-underline-offset: 3px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(620px 520px at 22% 10%, rgba(72, 198, 255, 0.14), transparent 60%),
    radial-gradient(720px 560px at 85% 18%, rgba(255, 200, 87, 0.10), transparent 62%);
  opacity: 0.35;
  z-index: 0;
}

/* Scroll-driven "wow" glow layer (desktop + mobile) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      900px 700px at var(--scroll-glow-x) var(--scroll-glow-y),
      rgba(26, 124, 255, 0.14),
      rgba(24, 213, 255, 0.08),
      transparent 62%
    ),
    radial-gradient(
      900px 700px at 70% calc(var(--scroll-glow-y) + 12%),
      rgba(255, 200, 87, 0.08),
      transparent 62%
    );
  opacity: 0.28;
  z-index: 0;
}

.scroll-wow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
      var(--wow-size) var(--wow-size) at var(--wow-x) var(--wow-y),
      rgba(26, 124, 255, 0.32),
      rgba(24, 213, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      calc(var(--wow-size) + 300px) calc(var(--wow-size) + 300px) at 70% calc(var(--wow-y) + 10%),
      rgba(255, 200, 87, 0.18),
      transparent 62%
    ),
    conic-gradient(
      from var(--wow-rot) at var(--wow-x) var(--wow-y),
      rgba(255, 255, 255, 0.14),
      transparent 22%,
      rgba(255, 200, 87, 0.16),
      transparent 48%,
      rgba(24, 213, 255, 0.14),
      transparent 78%,
      rgba(255, 255, 255, 0.10)
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0 1px,
      transparent 1px 14px
    );
  background-size: auto, auto, auto, 260px 260px;
  background-position: 0 0, 0 0, 0 0, 0 var(--grid-y);
  mix-blend-mode: screen;
  opacity: var(--wow-intensity);
  transition: opacity 0.35s var(--ease);
}

@media (min-width: 900px) {
  :root {
    --wow-intensity: 0.55;
    --wow-size: 1100px;
  }

  /* Make the scroll sheen more noticeable on desktop */
  .hero-card::before {
    opacity: 0.14;
  }
  .card::after {
    opacity: 0.10;
  }
  .gallery-card::after {
    opacity: 0.08;
  }
  .review::after {
    opacity: 0.12;
  }
}

.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;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: rgba(9, 20, 40, 0.92);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 198, 255, 0.18);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.10);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(72, 198, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(9, 20, 40, 0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-logo {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 15px;
  line-height: 1.05;
}
.brand-sub {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--panel2);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 198, 255, 0.18);
}
.nav-toggle-lines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  background: transparent;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(9, 20, 40, 0.80);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-lines::before {
  top: 2px;
}
.nav-toggle-lines::after {
  top: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(9, 20, 40, 0.05);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(26, 124, 255, 0.16);
}
.nav-link.active {
  color: var(--text);
  background: rgba(72, 198, 255, 0.12);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 124, 255, 0.95), rgba(24, 213, 255, 0.85));
  opacity: 0.9;
}
.nav-cta {
  color: rgba(9, 20, 40, 0.92);
  border: 1px solid rgba(72, 198, 255, 0.30);
  background: radial-gradient(circle at 20% 10%, rgba(72, 198, 255, 0.22), transparent 62%),
    var(--panel2);
}
.nav-cta:hover {
  background: radial-gradient(circle at 20% 10%, rgba(72, 198, 255, 0.28), transparent 62%),
    var(--panel2);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero.has-hero-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.has-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 247, 251, 0.92) 0%, rgba(246, 247, 251, 0.86) 45%, rgba(246, 247, 251, 0.60) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero.has-hero-photo .hero-inner {
  position: relative;
  z-index: 1;
}
.hero.has-hero-photo .hero-bg {
  opacity: 0.55;
}

.hero-bg {
  position: absolute;
  inset: -80px -80px auto -80px;
  height: 640px;
  background: radial-gradient(860px 520px at 20% 18%, rgba(72, 198, 255, 0.22), transparent 62%),
    radial-gradient(860px 520px at 82% 22%, rgba(24, 213, 255, 0.14), transparent 62%);
  filter: blur(0px);
  opacity: 0.92;
  animation: floaty 12s var(--ease) infinite;
  pointer-events: none;
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 14px, 0) rotate(1.5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.kicker {
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: rgba(2, 6, 23, 0.86);
  font-size: var(--small);
  line-height: 1;
}

h1 {
  margin: 0;
  font-size: var(--h1);
  letter-spacing: var(--tracking-h1);
  line-height: var(--tight);
}

.text-glow {
  background: linear-gradient(90deg, rgba(72, 198, 255, 0.98), rgba(255, 200, 87, 0.94));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 45px rgba(72, 198, 255, 0.14);
}

.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--body);
  line-height: var(--normal);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: rgba(2, 6, 23, 0.92);
  text-decoration: none;
  cursor: pointer;
  font-weight: 680;
  font-size: 14px;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  user-select: none;
  min-height: 44px;
}
.btn:hover {
  background: var(--panel2);
  border-color: rgba(9, 20, 40, 0.16);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 198, 255, 0.18);
}

.btn-primary {
  border-color: rgba(26, 124, 255, 0.55);
  background: linear-gradient(180deg, rgba(26, 124, 255, 0.98), rgba(24, 213, 255, 0.92));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(26, 124, 255, 0.22), 0 16px 40px rgba(2, 6, 23, 0.10);
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgba(26, 124, 255, 1), rgba(24, 213, 255, 0.98));
  border-color: rgba(26, 124, 255, 0.70);
  box-shadow: 0 26px 70px rgba(26, 124, 255, 0.26), 0 16px 40px rgba(2, 6, 23, 0.12);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(2, 6, 23, 0.14);
}

.micro {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
  font-size: 12px;
  flex-wrap: wrap;
}
.micro-link {
  color: rgba(2, 6, 23, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(26, 124, 255, 0.35);
  font-weight: 750;
}
.micro-link:hover {
  text-decoration-color: rgba(26, 124, 255, 0.65);
}
.hero-sub {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.3px;
  color: rgba(2, 6, 23, 0.92);
}

.band {
  padding: 72px 0;
}
.band-proof {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(2, 6, 23, 0.08);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}
.band-dark {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.band-dark .band-sub,
.band-dark .section-sub {
  color: rgba(255, 255, 255, 0.72);
}
.band-head {
  max-width: 72ch;
}
.band-sub {
  margin: 10px 0 0;
  font-size: var(--body);
  line-height: var(--normal);
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
  position: relative;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
  transform: translateX(var(--sheen-x));
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.gallery-media {
  aspect-ratio: 4 / 3;
  background: radial-gradient(900px 420px at 20% 10%, rgba(26, 124, 255, 0.22), transparent 55%),
    radial-gradient(900px 420px at 80% 30%, rgba(24, 213, 255, 0.14), transparent 55%),
    rgba(2, 6, 23, 0.02);
  display: grid;
  place-items: center;
  color: rgba(2, 6, 23, 0.55);
  font-weight: 800;
  letter-spacing: -0.2px;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.12) contrast(1.06);
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

@media (hover: hover) {
  .gallery-card:hover .gallery-media img {
    transform: scale(1.06);
    filter: saturate(1.18) contrast(1.08);
  }
}
.gallery-body {
  padding: 12px 12px;
}
.gallery-title {
  font-weight: 850;
  font-size: 13px;
  letter-spacing: -0.1px;
}
.gallery-loc {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
}

.band-dark .gallery-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  font-size: 12px;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 213, 255, 1), rgba(26, 124, 255, 1));
}

.testimonials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 16px;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
  position: relative;
}
.review::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  transform: translateX(var(--sheen-x));
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: screen;
}
.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.review-who {
  min-width: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 820;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.1px;
}
.review-date {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.review-stars {
  color: rgba(255, 200, 87, 0.95);
  letter-spacing: 1px;
  font-size: 12px;
  flex: 0 0 auto;
}
.review-service {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 850;
  color: rgba(255, 85, 114, 0.92);
  letter-spacing: -0.1px;
}
.review-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}
.review-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  font-size: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(55, 211, 154, 1), rgba(72, 198, 255, 1));
  box-shadow: 0 0 0 4px rgba(55, 211, 154, 0.10);
}

.hero-card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 20% 15%, rgba(72, 198, 255, 0.16), transparent 60%),
    radial-gradient(circle at 75% 20%, rgba(255, 200, 87, 0.10), transparent 65%),
    var(--panel2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.18s ease, border-color 0.15s ease, background 0.15s ease;
  will-change: transform;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
  transform: translateX(var(--sheen-x));
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(9, 20, 40, 0.08), transparent);
  transform: translateX(-120%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-card:hover {
  border-color: rgba(72, 198, 255, 0.24);
}
.hero-card:hover::after {
  animation: sheen 1.2s ease;
}
@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(140%);
  }
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
}

.hero-badge {
  display: grid;
  gap: 4px;
}
.hero-badge-title {
  font-size: 12px;
  color: var(--muted2);
}
.hero-badge-sub {
  font-size: 14px;
  font-weight: 750;
}

.hero-metric {
  text-align: right;
}
.hero-metric-val {
  font-weight: 850;
  font-size: 20px;
  letter-spacing: 0.1px;
}
.hero-metric-label {
  font-size: 12px;
  color: var(--muted2);
}
.hero-metric-sub {
  font-size: 12px;
  color: rgba(72, 198, 255, 0.9);
}

.hero-card-body {
  padding: 6px 16px 16px;
  display: grid;
  gap: 12px;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 40, 0.10);
  background: rgba(255, 255, 255, 0.65);
}
.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(55, 211, 154, 1), rgba(72, 198, 255, 1));
  box-shadow: 0 0 0 4px rgba(55, 211, 154, 0.09);
  position: relative;
  margin-top: 2px;
}
.check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(0, 0, 0, 0.75);
  border-bottom: 2px solid rgba(0, 0, 0, 0.75);
  transform: rotate(-45deg);
}
.check-title {
  font-weight: 760;
  letter-spacing: 0.1px;
}
.check-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.hero-card-foot {
  border-top: 1px solid rgba(9, 20, 40, 0.08);
  padding: 12px 16px 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mini-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(9, 20, 40, 0.84);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.mini-link:hover {
  text-decoration: underline;
}
.mini-sep {
  width: 1px;
  height: 12px;
  background: rgba(9, 20, 40, 0.14);
  margin: 0 6px;
}

.section {
  padding: 62px 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.70);
  border-top: 1px solid rgba(2, 6, 23, 0.08);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}

.section-head {
  max-width: 72ch;
}
h2 {
  margin: 0;
  font-size: var(--h2);
  letter-spacing: var(--tracking-h2);
  font-weight: 820;
}
.section-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--body);
  line-height: var(--normal);
}

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

.card {
  border-radius: var(--radius2);
  border: 1px solid rgba(9, 20, 40, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 16px;
  box-shadow: 0 22px 60px rgba(9, 20, 40, 0.12);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(72, 198, 255, 0.20), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 200, 87, 0.10), transparent 62%);
  transform: rotate(12deg);
  pointer-events: none;
  opacity: 0.95;
}
.card::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
  transform: translateX(var(--sheen-x));
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.card:hover {
  border-color: rgba(72, 198, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 75px rgba(72, 198, 255, 0.14), 0 22px 60px rgba(9, 20, 40, 0.12);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 40, 0.10);
  background: rgba(255, 255, 255, 0.80);
  display: grid;
  place-items: center;
  color: rgba(9, 20, 40, 0.80);
  box-shadow: 0 18px 42px rgba(9, 20, 40, 0.12);
}
.card-icon svg {
  width: 20px;
  height: 20px;
}
.card:hover .card-icon {
  color: rgba(9, 20, 40, 0.92);
  border-color: rgba(72, 198, 255, 0.28);
  box-shadow: 0 22px 55px rgba(72, 198, 255, 0.18);
}

.muted-hero {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted2);
  font-size: var(--small);
}
.card h3 {
  margin: 12px 0 6px;
  font-size: var(--h3);
  letter-spacing: -0.1px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--small);
  line-height: var(--normal);
}

.service-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: var(--small);
  line-height: var(--normal);
}
.service-list:empty {
  display: none;
}
.service-list li {
  margin: 4px 0;
}

.service-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-meta:empty {
  display: none;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(2, 6, 23, 0.86);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.card-foot {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-size: var(--small) !important;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}
.step {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}
.step-num {
  font-weight: 850;
  font-size: 16px;
  color: rgba(72, 198, 255, 0.92);
  letter-spacing: -0.3px;
}
.step-body {
  min-width: 0;
}
.step h3 {
  margin: 0;
  font-size: var(--h3);
}
.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: var(--small);
  line-height: var(--normal);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.about-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.about-list li {
  margin: 8px 0;
}
.about-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-panel {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.18s ease;
}
.about-panel-title {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(9, 20, 40, 0.82);
}

.about-proof {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: var(--small);
  line-height: var(--normal);
}
.about-proof li {
  margin: 8px 0;
}

.dl {
  margin: 0;
}
.dl-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(9, 20, 40, 0.08);
}
.dl-row:first-child {
  border-top: 0;
}
.dl dt {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
}
.dl dd {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  color: rgba(9, 20, 40, 0.82);
}

.legal {
  margin-top: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 16px;
  box-shadow: 0 18px 50px rgba(9, 20, 40, 0.14);
}
.legal[open] {
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.14);
}
.legal-summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(255, 255, 255, 0.80);
}
.legal-summary::-webkit-details-marker {
  display: none;
}
.legal-summary::after {
  content: "⌄";
  float: right;
  opacity: 0.7;
  transform: translateY(1px);
}
.legal[open] .legal-summary::after {
  content: "⌃";
}
.legal-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.legal-item {
  border-radius: 16px;
  border: 1px solid rgba(9, 20, 40, 0.10);
  background: rgba(255, 255, 255, 0.80);
  padding: 12px 12px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.legal-k {
  color: var(--muted2);
  font-size: 12px;
}
.legal-v {
  margin-top: 6px;
  font-weight: 750;
  font-size: 13px;
  color: rgba(9, 20, 40, 0.86);
  line-height: 1.35;
}
.legal-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-card {
  margin: 18px 0 0;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.section-card h3 {
  margin: 0;
  font-size: var(--h3);
  letter-spacing: -0.1px;
}

.faq {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.10);
  background: rgba(255, 255, 255, 0.82);
  padding: 10px 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(2, 6, 23, 0.90);
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  opacity: 0.7;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--small);
  line-height: var(--normal);
}

.contact-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
  align-items: start;
}
.contact-card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.18s ease;
}
.contact-title {
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-row {
  padding: 10px 0;
  border-top: 1px solid rgba(9, 20, 40, 0.08);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
}
.contact-row:first-of-type {
  border-top: 0;
}
.contact-k {
  color: var(--muted2);
  font-size: 12px;
}
.contact-v {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.contact-v a {
  color: rgba(9, 20, 40, 0.86);
  text-decoration: none;
  font-weight: 750;
}
.contact-v a:hover {
  text-decoration: underline;
}

.chip {
  border: 1px solid rgba(9, 20, 40, 0.12);
  background: rgba(255, 255, 255, 0.80);
  color: rgba(9, 20, 40, 0.86);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  min-height: 34px;
}
.chip-utility {
  border-color: transparent;
  background: transparent;
  padding: 0;
  min-height: 0;
  color: rgba(2, 6, 23, 0.62);
  text-decoration: underline;
  text-decoration-color: rgba(2, 6, 23, 0.22);
  text-underline-offset: 3px;
  font-weight: 750;
  font-size: 12px;
}
.chip-utility:hover {
  color: rgba(2, 6, 23, 0.82);
  text-decoration-color: rgba(26, 124, 255, 0.45);
}
.chip:hover {
  background: rgba(255, 255, 255, 0.92);
}
.chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 198, 255, 0.18);
}

.contact-note {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(72, 198, 255, 0.18);
  background: rgba(72, 198, 255, 0.08);
  padding: 12px 12px;
  color: rgba(9, 20, 40, 0.84);
  font-size: 12px;
  line-height: 1.55;
}

.form {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.label {
  font-size: 12px;
  color: var(--muted2);
}
.input,
.textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(9, 20, 40, 0.92);
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
}
.textarea {
  min-height: 120px;
  resize: vertical;
}
.input:focus,
.textarea:focus {
  border-color: rgba(72, 198, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(72, 198, 255, 0.14);
}
.input::placeholder,
.textarea::placeholder {
  color: rgba(9, 20, 40, 0.44);
}

/* Photo upload (quote) */
.upload-drop {
  display: block;
  cursor: pointer;
  user-select: none;
}
.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.upload-ui {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(2, 6, 23, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.08);
}
.upload-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: radial-gradient(200px 120px at 20% 20%, rgba(72, 198, 255, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.86);
  position: relative;
}
.upload-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
  border: 2px solid rgba(9, 20, 40, 0.25);
  border-top-color: rgba(9, 20, 40, 0.10);
}
.upload-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.upload-title {
  font-weight: 850;
  font-size: 13px;
  color: rgba(9, 20, 40, 0.92);
}
.upload-sub {
  font-size: 12px;
  color: rgba(9, 20, 40, 0.62);
  line-height: 1.35;
}
.upload-count {
  margin-left: auto;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  color: rgba(9, 20, 40, 0.78);
}
.upload-drop:hover .upload-ui {
  border-color: rgba(72, 198, 255, 0.30);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.10);
}
.upload-preview {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.upload-item {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.upload-thumb {
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upload-meta {
  font-size: 12px;
  color: rgba(9, 20, 40, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-more {
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px dashed rgba(2, 6, 23, 0.18);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(9, 20, 40, 0.72);
  font-weight: 820;
}

@media (max-width: 520px) {
  .upload-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* WhatsApp QR */
.wa-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-qr {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: rgba(255, 255, 255, 0.72);
}
.wa-box-title {
  font-weight: 850;
}
.wa-box-sub {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.45;
}

.legal-bottom {
  padding-top: 22px;
}
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.fineprint {
  margin: 12px 0 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.55;
}

.footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(9, 20, 40, 0.10);
  background: rgba(255, 255, 255, 0.62);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-brand {
  font-weight: 820;
}
.footer-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.footer-right {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted2);
  font-size: 12px;
}
.footer-link {
  color: rgba(9, 20, 40, 0.82);
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-sep {
  width: 1px;
  height: 12px;
  background: rgba(9, 20, 40, 0.14);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 999px;
  border: 1px solid rgba(9, 20, 40, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: rgba(9, 20, 40, 0.92);
  padding: 10px 12px;
  font-size: 12px;
  box-shadow: 0 18px 50px rgba(9, 20, 40, 0.18);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  filter: blur(6px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), filter 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered reveal for card grids */
.cards .reveal.is-visible {
  transition-timing-function: var(--ease);
}
.cards .reveal:nth-child(1).is-visible { transition-delay: 0ms; }
.cards .reveal:nth-child(2).is-visible { transition-delay: 40ms; }
.cards .reveal:nth-child(3).is-visible { transition-delay: 80ms; }
.cards .reveal:nth-child(4).is-visible { transition-delay: 120ms; }
.cards .reveal:nth-child(5).is-visible { transition-delay: 160ms; }
.cards .reveal:nth-child(6).is-visible { transition-delay: 200ms; }

.hero-bg {
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  body {
    /* Make room for bottom CTA bar (incl. safe area) */
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    right: 20px;
    top: 62px;
    display: grid;
    gap: 6px;
    min-width: 220px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(9, 20, 40, 0.16);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

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

  .nav-link {
    padding: 10px 10px;
    border-radius: 12px;
  }

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

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

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

.mobile-cta {
  display: none;
}

@media (max-width: 720px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 10px;
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, 0.10);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.18);
    z-index: 80;
  }
  .mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 14px;
    font-size: 14px;
  }
  .mobile-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

