:root {
  /* Light theme (requested) */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f6f6f6;
  --border: rgba(0, 0, 0, 0.12);
  --text: rgba(0, 0, 0, 0.92);
  --muted: rgba(0, 0, 0, 0.72);
  --muted2: rgba(0, 0, 0, 0.55);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --focus: 0 0 0 4px rgba(245, 158, 11, 0.20);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.92);
  /* Premium "service company" palette: monochrome + warm accent */
  --accent: #f59e0b; /* amber */
  --accent2: #e5e7eb; /* light steel */
  --accent-soft: rgba(245, 158, 11, 0.16);
  --accent-border: rgba(245, 158, 11, 0.28);
  --accent2-soft: rgba(229, 231, 235, 0.12);
  --accent2-border: rgba(229, 231, 235, 0.18);
  --stroke: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(229, 231, 235, 0.85));
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 18% 8%, rgba(245, 158, 11, 0.10), transparent 62%),
    radial-gradient(900px 600px at 82% 14%, rgba(0, 0, 0, 0.04), transparent 62%),
    #fafafa;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Premium background: subtle color mesh + light grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.22) 1px, transparent 0);
  background-size: 26px 26px;
  mix-blend-mode: multiply;
  animation: grain-drift 14s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  background:
    radial-gradient(closest-side at 50% 0%, rgba(245, 158, 11, 0.10), transparent 70%),
    radial-gradient(closest-side at 50% 100%, rgba(0, 0, 0, 0.08), transparent 70%);
  filter: blur(18px);
}

/* Animated background - floating blobs and mesh */
.animated-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.05) 50%, transparent 100%);
  top: -200px;
  left: -200px;
  animation: blob-float-1 20s ease-in-out infinite;
}

.bg-blob-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.03) 50%, transparent 100%);
  bottom: -300px;
  right: -300px;
  animation: blob-float-2 25s ease-in-out infinite;
}

.bg-blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 50%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blob-float-3 30s ease-in-out infinite;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
    linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: bg-mesh-drift 15s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes blob-float-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, 150px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 200px) scale(0.9);
  }
}

@keyframes blob-float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-150px, -100px) scale(1.15);
  }
  66% {
    transform: translate(100px, -200px) scale(0.85);
  }
}

@keyframes blob-float-3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-45%, -55%) scale(1.2) rotate(180deg);
  }
}

@keyframes bg-mesh-drift {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Water ripple effect - follows mouse */
.water-effect {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.water-effect.is-active {
  opacity: 1;
}

.water-effect::before,
.water-effect::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: opacity 0.4s ease;
}

.water-effect::after {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  filter: blur(50px);
}

/* Cursor trail - black fire effect */
/* Parallax entrance animations */
body.is-loading .header,
body.is-loading .hero,
body.is-loading .section {
  opacity: 0;
}

.parallax-entrance {
  opacity: 0;
  will-change: transform, opacity;
}

.parallax-entrance.from-top {
  transform: translateY(-40px);
}

.parallax-entrance.from-bottom {
  transform: translateY(40px);
}

.parallax-entrance.from-left {
  transform: translateX(-40px);
}

.parallax-entrance.from-right {
  transform: translateX(40px);
}

.parallax-entrance.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (prefers-reduced-motion: reduce) {
  .parallax-entrance {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none !important;
  }
  .animated-bg,
  .bg-blob,
  .bg-mesh {
    animation: none !important;
  }
}

@keyframes mesh-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-20px, 14px, 0) scale(1.03);
  }
}

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

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

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-border);
  text-underline-offset: 5px;
}

.nav a.active,
.nav a:hover {
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 86px;
}

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

.logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: transparent;
  color: rgba(0, 0, 0, 0.92);
  border: 1px solid var(--border);
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 3px;
}

.logo .logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.96);
}

.logo:not([data-fallback="1"]) .logo-fallback {
  display: none;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.86rem;
  margin-top: 2px;
  color: var(--muted2);
}

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

.nav a:not(.btn) {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav a:not(.btn):hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

/* Buttons */
.btn {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.16);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary {
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: linear-gradient(180deg, rgba(245, 158, 11, 1), rgba(230, 140, 10, 1));
  color: rgba(0, 0, 0, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgba(255, 176, 53, 1), rgba(235, 150, 20, 1));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  background: transparent;
}

.btn-sm {
  padding: 10px 12px;
  border-radius: 12px;
}

.w-100 {
  width: 100%;
  display: flex;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto 0;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 50% 40%, rgba(245, 158, 11, 0.16), transparent 70%),
    radial-gradient(closest-side at 78% 30%, rgba(229, 231, 235, 0.10), transparent 70%),
    radial-gradient(closest-side at 25% 20%, rgba(255, 255, 255, 0.05), transparent 70%);
  filter: blur(10px);
}

.hero-copy {
  padding-top: 6px;
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 32px;
  position: relative;
}

.hero-anim {
  margin: 32px auto 0;
  max-width: 960px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hero-anim-svg {
  display: block;
  width: 100%;
  height: 220px;
  color: rgba(0, 0, 0, 0.78);
}

.hero-anim-svg .stroke {
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.hero-anim-svg .stroke.faint {
  opacity: 0.25;
}

.hero-anim-svg .stroke.accent {
  stroke: var(--accent);
}

.hero-anim-svg .fill {
  fill: rgba(255, 255, 255, 0.86);
}

.hero-anim-svg .accent-fill {
  fill: var(--accent);
}

.hero-anim-svg .box {
  fill: rgba(0, 0, 0, 0.03);
  stroke: rgba(0, 0, 0, 0.18);
  stroke-width: 3;
}

.hero-anim-svg .label {
  fill: rgba(0, 0, 0, 0.04);
  stroke: rgba(0, 0, 0, 0.22);
  stroke-width: 2;
}

.hero-anim-svg .worker {
  transform-origin: center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

/* Worker 1 - Assembly */
.hero-anim-svg .worker-1 {
  animation: hero-worker-1 4s ease-in-out infinite;
}

.hero-anim-svg .worker-1 .arm-l {
  animation: hero-assemble-arm-l 1.2s ease-in-out infinite;
  transform-origin: 90px 130px;
}

.hero-anim-svg .worker-1 .arm-r {
  animation: hero-assemble-arm-r 1.2s ease-in-out infinite;
  transform-origin: 90px 130px;
}

.hero-anim-svg .worker-1 .leg-l {
  animation: hero-leg-sway-l 1.8s ease-in-out infinite;
  transform-origin: 90px 150px;
}

.hero-anim-svg .worker-1 .leg-r {
  animation: hero-leg-sway-r 1.8s ease-in-out infinite;
  transform-origin: 90px 150px;
}

.hero-anim-svg .tool-screwdriver {
  animation: hero-screwdriver 0.8s ease-in-out infinite;
  transform-origin: 110px 145px;
}

.hero-anim-svg .furniture-assemble {
  animation: hero-furniture-bob 2.5s ease-in-out infinite;
}

/* Worker 2 - TV Mounting */
.hero-anim-svg .worker-2 {
  animation: hero-worker-2 3.5s ease-in-out infinite;
}

.hero-anim-svg .worker-2 .arm-l {
  animation: hero-mount-arm-l 1.4s ease-in-out infinite;
  transform-origin: 560px 130px;
}

.hero-anim-svg .worker-2 .arm-r {
  animation: hero-mount-arm-r 1.4s ease-in-out infinite;
  transform-origin: 560px 130px;
}

.hero-anim-svg .worker-2 .leg-l {
  animation: hero-leg-sway-l 1.8s ease-in-out infinite;
  transform-origin: 560px 150px;
}

.hero-anim-svg .worker-2 .leg-r {
  animation: hero-leg-sway-r 1.8s ease-in-out infinite;
  transform-origin: 560px 150px;
}

  .hero-anim-svg .tool-drill {
  /* No additional animation - it rotates naturally with the arm */
  animation: none !important;
}

.hero-anim-svg .sparks {
  animation: hero-sparks 0.3s ease-in-out infinite;
}

.hero-anim-svg .tv-mount {
  animation: hero-tv-mount 2.8s ease-in-out infinite;
}

/* Worker 3 - Camera */
.hero-anim-svg .worker-3 {
  animation: hero-worker-3 4.2s ease-in-out infinite;
}

.hero-anim-svg .worker-3 .arm-l {
  animation: hero-camera-arm-l 1.6s ease-in-out infinite;
  transform-origin: 720px 130px;
}

.hero-anim-svg .worker-3 .arm-r {
  animation: hero-camera-arm-r 1.6s ease-in-out infinite;
  transform-origin: 720px 130px;
}

.hero-anim-svg .worker-3 .leg-l {
  animation: hero-leg-sway-l 1.8s ease-in-out infinite;
  transform-origin: 720px 150px;
}

.hero-anim-svg .worker-3 .leg-r {
  animation: hero-leg-sway-r 1.8s ease-in-out infinite;
  transform-origin: 720px 150px;
}

.hero-anim-svg .camera-install {
  animation: hero-camera-float 3.2s ease-in-out infinite;
}

.hero-anim-svg .pulse {
  animation: hero-pulse 1.5s ease-in-out infinite;
}

.hero-anim-svg .cable-work {
  animation: hero-cable-work 2s ease-in-out infinite;
}

/* Worker movements */
@keyframes hero-worker-1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-2px) translateX(2px);
  }
}

@keyframes hero-worker-2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-1px) translateX(-1px);
  }
}

@keyframes hero-worker-3 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-2px) translateX(1px);
  }
}

/* Assembly animations */
@keyframes hero-assemble-arm-l {
  0%, 100% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

@keyframes hero-assemble-arm-r {
  0%, 100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

@keyframes hero-screwdriver {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(15deg) translateY(-2px);
  }
  75% {
    transform: rotate(-15deg) translateY(1px);
  }
}

@keyframes hero-furniture-bob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-1px) rotate(0.5deg);
  }
}

/* Mounting animations */
@keyframes hero-mount-arm-l {
  0%, 100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes hero-mount-arm-r {
  0%, 100% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(35deg);
  }
}

@keyframes hero-drill-active {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(1px) translateX(0.5px);
  }
}

@keyframes hero-sparks {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes hero-tv-mount {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-1px) rotate(-0.3deg);
  }
}

/* Camera animations */
@keyframes hero-camera-arm-l {
  0%, 100% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes hero-camera-arm-r {
  0%, 100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(30deg);
  }
}

@keyframes hero-camera-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes hero-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes hero-cable-work {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-1px);
    opacity: 1;
  }
}

/* Leg animations (shared) */
@keyframes hero-leg-sway-l {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes hero-leg-sway-r {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim-svg .worker-1,
  .hero-anim-svg .worker-2,
  .hero-anim-svg .worker-3,
  .hero-anim-svg .furniture-assemble,
  .hero-anim-svg .tv-mount,
  .hero-anim-svg .camera-install,
  .hero-anim-svg .arm-l,
  .hero-anim-svg .arm-r,
  .hero-anim-svg .leg-l,
  .hero-anim-svg .leg-r,
  .hero-anim-svg .tool-screwdriver,
  .hero-anim-svg .tool-drill,
  .hero-anim-svg .sparks,
  .hero-anim-svg .pulse,
  .hero-anim-svg .cable-work {
    animation: none !important;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  font-weight: 650;
  margin: 0 0 14px;
}

h1 {
  margin: 0 0 12px;
  letter-spacing: -0.04em;
  line-height: 1.0;
  font-size: clamp(2.4rem, 4.3vw, 3.7rem);
}

.hero h1 {
  display: block;
}

.accent {
  display: inline;
  padding: 0 0.15em;
  border-radius: 10px;
  background:
    linear-gradient(
      0deg,
      rgba(245, 158, 11, 0.22) 0%,
      rgba(245, 158, 11, 0.22) 55%,
      transparent 55%,
      transparent 100%
    );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.word-rotator {
  display: inline-block;
  vertical-align: baseline;
  text-align: left;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
  will-change: opacity, transform;
}

.word-rotator.is-changing {
  opacity: 0;
  transform: translateY(-0.15em);
  filter: blur(1px);
}

.subhead {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.06rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 22px;
  justify-content: center;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
}

.kpi {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  width: 100%;
  position: relative;
}

.kpi::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0.24;
}

.kpi-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kpi-sub {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-card {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  max-width: 760px;
  margin: 0 auto;
}

.hero-card .btn {
  margin-top: 8px;
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-card-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
}

.pill {
  border-color: var(--border);
  background: var(--surface2);
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 14px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.45;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
}

.fineprint {
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 16px;
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.section-head.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.section-head.gallery-head .section-head-copy {
  display: grid;
  gap: 8px;
}

.section-head.gallery-head p {
  text-align: left;
}

h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

h3 {
  letter-spacing: -0.02em;
}

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

.gallery-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-strong);
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 60px rgba(0, 0, 0, 0.35);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

.gallery-nav-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 26px 80px rgba(0, 0, 0, 0.45);
}

.gallery-nav-btn.is-disabled,
.gallery-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.card {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(14px);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 34px 90px rgba(0, 0, 0, 0.55);
}

/* Gallery Page */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.gallery-page-grid .gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-page-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.gallery-page-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .gallery-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 36px;
  line-height: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 768px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 28px;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 85vh;
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.review-card {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(14px);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 34px 90px rgba(0, 0, 0, 0.55);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.review-stars svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review-text {
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
  font-size: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.review-author svg {
  width: 24px;
  height: 24px;
  color: var(--muted);
  flex-shrink: 0;
}

.review-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.review-author span {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Carousel */
.carousel {
  max-width: 1040px;
  margin: 18px auto 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--glass-strong);
  backdrop-filter: blur(14px);
  overflow: hidden;
  position: relative;
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 2;
}

.carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent);
}

.carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), transparent);
}

.carousel-track {
  display: flex;
  gap: 28px;
  padding: 22px 18px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-set {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 0 0 auto;
  /* No infinite marquee by default (reads less "SaaS"); users can still scroll horizontally */
  animation: none;
}

.carousel:hover .carousel-set {
  animation-play-state: paused;
}

.carousel-item {
  flex: 0 0 auto;
  min-width: 180px;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 10px 10px 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
  scroll-snap-align: start;
  text-decoration: none;
}

.carousel-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.28);
  background: var(--surface2);
  text-decoration: none;
}

.carousel-bubble {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 40% 30%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.01));
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
}

.carousel-bubble svg {
  width: 54px;
  height: 54px;
  color: var(--muted);
}

.carousel-label {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.carousel-arrow {
  margin-left: 6px;
  opacity: 0.75;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-set {
    animation: none !important;
  }
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.card-head h3 {
  margin: 0;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
  color: var(--text);
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

/* Services micro-animations */
#services .card .service-icon {
  position: relative;
  overflow: hidden;
}

#services .card .service-icon::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(135deg, transparent, rgba(245, 158, 11, 0.22), transparent);
  transform: translateX(-40%) rotate(10deg);
  opacity: 0;
  transition: opacity 240ms ease, transform 520ms ease;
}

#services .card:hover .service-icon {
  transform: translateY(-1px);
}

#services .card:hover .service-icon::after {
  opacity: 1;
  transform: translateX(40%) rotate(10deg);
}

/* Bullets animate in (inside services cards) */
#services .card.reveal .bullets li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 420ms ease, transform 420ms ease;
}

#services .card.reveal.is-visible .bullets li {
  opacity: 1;
  transform: translateY(0);
}

#services .card.reveal.is-visible .bullets li:nth-child(1) { transition-delay: 80ms; }
#services .card.reveal.is-visible .bullets li:nth-child(2) { transition-delay: 140ms; }
#services .card.reveal.is-visible .bullets li:nth-child(3) { transition-delay: 200ms; }
#services .card.reveal.is-visible .bullets li:nth-child(4) { transition-delay: 260ms; }

/* Process (timeline) */
.process {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  position: relative;
}

.process-rail {
  position: relative;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.10);
  border-radius: 999px;
}

.process-line-active {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.9), rgba(229, 231, 235, 0.35));
  border-radius: 999px;
  height: 0%;
  filter: drop-shadow(0 10px 24px rgba(245, 158, 11, 0.22));
  transition: height 520ms ease;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.process-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
  color: var(--text);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-icon svg {
  width: 20px;
  height: 20px;
}

.process-content h3 {
  margin: 2px 0 6px;
}

.process-step.is-active .process-dot {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(245, 158, 11, 0.10);
  transform: translateY(-1px);
}

.process-step.is-active .process-content h3 {
  background: linear-gradient(0deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.18));
  background-size: 100% 0.45em;
  background-repeat: no-repeat;
  background-position: 0 92%;
  display: inline;
  border-radius: 10px;
  padding: 0 4px;
}

@media (max-width: 720px) {
  .process {
    grid-template-columns: 1fr;
  }
  .process-rail {
    display: none;
  }
  .process-step {
    grid-template-columns: 42px 1fr;
  }
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.bullets {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.panel {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-form {
  background: rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.panel-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.map-container {
  margin: 16px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

/* Details / FAQ */
.details {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: 16px;
  padding: 14px 14px;
  backdrop-filter: blur(14px);
}

.details + .details {
  margin-top: 12px;
}

.details summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  list-style: none;
}

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

.details summary::after {
  content: "+";
  float: right;
  color: var(--muted2);
  font-weight: 900;
}

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

.details p {
  margin: 10px 0 0;
}

.faq {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.zip-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.zip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Contact mini cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(14px);
}

.mini-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.mini-value {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
  word-break: break-word;
}

.mini-value a {
  display: inline-block;
}

/* Area cards */
.area-cards {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--glass-strong);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.area-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.06));
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.area-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.area-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Form */
.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 8px;
}

.form label span {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  outline: none;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:hover,
.form textarea:hover {
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.95);
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: var(--focus);
}

.form button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Modal/Popup */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  visibility: hidden;
}

.modal.active {
  display: flex !important;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--glass-strong);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 32px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.modal-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.modal-subtitle strong {
  color: var(--accent);
  font-weight: 800;
}

.modal-form {
  display: grid;
  gap: 16px;
}

.modal-form label {
  display: grid;
  gap: 8px;
}

.modal-form label span {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.modal-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  outline: none;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form input::placeholder {
  color: var(--muted2);
}

.modal-form input:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.modal-form input:focus {
  border-color: var(--accent);
  box-shadow: var(--focus);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 24px;
    width: 95%;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }
}

/* Footer */
.footer {
  padding: 30px 0 44px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-sub,
.footer-small {
  color: var(--muted2);
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .kpis {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .zip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-head.gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
