/* Bisnisloka — premium local SEO landing */
:root {
  --navy-950: #050a14;
  --navy-900: #071225;
  --navy-800: #0b1a33;
  --navy-700: #0f2447;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --white: #ffffff;
  --muted: #f5f7fb;
  --text: #0b1220;
  --text-soft: #4b5c76;
  --border: rgba(15, 36, 71, 0.08);
  --shadow: 0 18px 50px rgba(7, 18, 38, 0.12);
  --shadow-lg: 0 28px 80px rgba(7, 18, 38, 0.18);
  --glow: 0 0 0 1px rgba(56, 189, 248, 0.12), 0 20px 60px rgba(14, 165, 233, 0.18);
  --radius: 16px;
  --radius-lg: 22px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.section--muted {
  background: linear-gradient(180deg, var(--muted) 0%, #eef2f8 100%);
}

.section__intro {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-title {
  font-size: clamp(1.75rem, 1.1rem + 2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.75rem;
  color: var(--navy-900);
}

.section-sub {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, var(--blue-400), var(--navy-800));
  box-shadow: var(--glow);
}
.logo--footer .logo__text {
  color: var(--white);
}
.logo--footer .logo__mark {
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.25);
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}
.nav a:hover {
  color: var(--navy-900);
}

.header__actions {
  display: none;
  gap: 0.6rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--navy-900);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-weight: 600;
  color: var(--navy-900);
  padding: 0.35rem 0;
}

@media (min-width: 960px) {
  .nav,
  .header__actions {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 14px 40px rgba(2, 132, 199, 0.45);
}
.btn--secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(7, 18, 38, 0.06);
}
.btn--secondary:hover {
  border-color: rgba(56, 189, 248, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: rgba(56, 189, 248, 0.5);
}
.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}
.btn--on-dark {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}
.btn--on-dark:hover {
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.5rem, 10vw, 6.5rem);
  background: radial-gradient(120% 80% at 10% 0%, rgba(56, 189, 248, 0.12), transparent 55%), linear-gradient(180deg, #fbfcff 0%, var(--white) 60%);
}
.hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: min(70vh, 620px);
  background: radial-gradient(closest-side, rgba(56, 189, 248, 0.35), rgba(14, 165, 233, 0.08) 55%, transparent 70%);
  filter: blur(40px);
  opacity: 0.9;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__copy h1 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.25rem, 1.4rem + 3.2vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy-900);
}
.lead {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  color: var(--text-soft);
  max-width: 34rem;
  font-weight: 600;
}
.lead-sub {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 34rem;
  opacity: 0.95;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

/* Dashboard */
.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg), var(--glow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.dash {
  padding: 1.25rem 1.25rem 1rem;
}
.dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dash__title {
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.dash__pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-600);
  border: 1px solid rgba(56, 189, 248, 0.25);
}
.dash__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.metric {
  padding: 0.85rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 26, 51, 0.04), rgba(11, 26, 51, 0.02));
  border: 1px solid var(--border);
}
.metric__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}
.metric__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.metric__delta {
  font-size: 0.8rem;
  font-weight: 700;
}
.metric__delta--pos {
  color: #059669;
}
.dash__chart {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  min-height: 140px;
}
.spark {
  width: 100%;
  height: 120px;
  display: block;
}
.spark__line {
  stroke: var(--blue-500);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 6px 14px rgba(14, 165, 233, 0.35));
}
.bars {
  position: absolute;
  inset: auto 12px 10px 12px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.35), rgba(2, 132, 199, 0.85));
  transform-origin: bottom;
  animation: barGrow 1.2s var(--ease) both;
}
.bars span:nth-child(2) {
  animation-delay: 0.05s;
}
.bars span:nth-child(3) {
  animation-delay: 0.1s;
}
.bars span:nth-child(4) {
  animation-delay: 0.15s;
}
.bars span:nth-child(5) {
  animation-delay: 0.2s;
}
.bars span:nth-child(6) {
  animation-delay: 0.25s;
}
.bars span:nth-child(7) {
  animation-delay: 0.3s;
}
@keyframes barGrow {
  from {
    transform: scaleY(0.2);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
.dash__footer {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}
.dot--live {
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

/* Trust */
.trust__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
@media (min-width: 720px) {
  .trust__head {
    flex-direction: row;
    align-items: center;
  }
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 18, 38, 0.06);
}
.stars {
  letter-spacing: 0.05em;
  color: #f59e0b;
  font-size: 0.95rem;
}
.rating__text {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.logo-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px dashed rgba(15, 36, 71, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

/* Cards / services */
.card-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 189, 248, 0.35);
}
.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.15), rgba(2, 132, 199, 0.08));
  margin-bottom: 1rem;
}
.card__icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* Why / compare */
.why__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 960px) {
  .why__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }
}
.compare {
  padding: 0;
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}
.compare__row--head {
  border-top: none;
  background: linear-gradient(90deg, rgba(11, 26, 51, 0.04), rgba(56, 189, 248, 0.06));
  font-weight: 800;
  color: var(--navy-900);
}
.compare__highlight {
  color: var(--blue-600);
}
.compare__row span:first-child {
  font-weight: 700;
  color: var(--navy-900);
}
.bad {
  color: #b45309;
  font-weight: 600;
}
.good {
  color: #047857;
  font-weight: 700;
}

/* Results */
.results__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.case__head h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.case__tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}
.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.case__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.case__value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.mini-chart {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.5rem 0.65rem 0.35rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.mini-chart svg {
  width: 100%;
  height: 64px;
}
.mini-chart__line {
  stroke-width: 2.5;
  stroke-linecap: round;
}
.mini-chart__line--before {
  stroke: rgba(15, 36, 71, 0.25);
}
.mini-chart__line--after {
  stroke: var(--blue-500);
  filter: drop-shadow(0 6px 12px rgba(14, 165, 233, 0.35));
}
.mini-chart__legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 0.15rem 0.25rem 0;
}
.traffic-bars__pair {
  display: grid;
  grid-template-columns: 32px 1fr 1fr;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.4rem;
}
.traffic-bars .label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
}
.bar {
  height: 8px;
  border-radius: 999px;
  width: var(--w);
}
.bar--old {
  background: rgba(15, 36, 71, 0.15);
  justify-self: start;
}
.bar--new {
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.25);
  justify-self: start;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.before-after__item {
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 0.85rem;
}
.before-after__item span {
  display: block;
  margin-bottom: 0.25rem;
}
.before-after__item small {
  display: block;
  font-weight: 600;
  color: var(--text-soft);
  font-size: 0.78rem;
}
.before-after__item--before {
  background: rgba(15, 36, 71, 0.04);
  color: var(--navy-900);
}
.before-after__item--after {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(2, 132, 199, 0.08));
  color: var(--navy-900);
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.timeline__step {
  position: relative;
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.timeline__num {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  margin-bottom: 0.5rem;
}
.timeline__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.timeline__step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 14px;
    height: 2px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.85));
    transform: translateY(-50%);
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tcard {
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.tcard blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--navy-900);
  line-height: 1.55;
}
.tcard figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.tcard__name {
  font-weight: 800;
  color: var(--navy-900);
}

/* CTA band */
.cta-band {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background: radial-gradient(80% 120% at 10% 10%, rgba(56, 189, 248, 0.35), transparent 55%), linear-gradient(135deg, var(--navy-900), #0a2744 45%, var(--navy-800));
  color: var(--white);
  position: relative;
  overflow: clip;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 840px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.35rem);
  letter-spacing: -0.03em;
}
.cta-band p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

/* Contact */
.contact__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.contact__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-weight: 600;
}
.contact__list li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.contact__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}
.form {
  padding: 1.35rem 1.25rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
}
.field input,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}
.form__fineprint {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: rgba(255, 255, 255, 0.78);
  padding-block: 3rem 1.5rem;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}
.footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer__tagline {
  margin: 0.75rem 0 0;
  max-width: 320px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}
.footer__title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
.footer__links a:hover {
  color: var(--white);
}
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__legal {
  font-weight: 600;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
[data-animate-delay="1"] {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
