:root {
  --background: #ffffff;
  --foreground: #111827;
  --brand-red: #d83131;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --max-w: 72rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
}

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

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

::selection {
  background: rgba(216, 49, 49, 0.18);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

.container--narrow {
  max-width: 56rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(228, 228, 231, 0.7);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-2xl);
}

.brand__name {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-red);
}

.brand__slogan {
  display: none;
  font-size: 0.75rem;
  color: var(--zinc-500);
}

@media (min-width: 640px) {
  .brand__slogan {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-700);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--zinc-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
}

.btn--ghost {
  border-color: var(--zinc-200);
  background: #fff;
  color: var(--zinc-900);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn--ghost:hover {
  background: var(--zinc-50);
}

.btn--primary {
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn--primary:hover {
  opacity: 0.95;
}

.btn--lg {
  padding: 0.75rem 1.25rem;
}

.btn--white {
  background: #fff;
  color: var(--zinc-900);
  font-weight: 800;
}

.btn--white:hover {
  background: var(--zinc-100);
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hide-sm {
  display: none;
}

@media (min-width: 640px) {
  .hide-sm {
    display: inline-flex;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 0.5rem 0.75rem;
  color: var(--zinc-900);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100dvh;
  width: 88vw;
  max-width: 340px;
  border-left: 1px solid var(--zinc-200);
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(228, 228, 231, 0.7);
  padding: 0.75rem 1rem;
}

.mobile-nav__title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--zinc-900);
}

.mobile-nav__links {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.mobile-nav__links a {
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--zinc-900);
}

.mobile-nav__links a:hover {
  background: #fff;
}

.mobile-nav__cta {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.mobile-nav__legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--zinc-200);
  font-size: 0.75rem;
  color: var(--zinc-500);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mobile-nav__legal a {
  font-weight: 600;
  border: none;
  background: none;
  padding: 0;
}

/* Hero */
.hero {
  position: relative;
  height: 100svh;
  width: 100%;
  background: var(--zinc-950);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.hero__video.is-visible {
  opacity: 0.7;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65));
}

.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero__inner {
  max-width: 42rem;
  transform: translateY(-2rem);
}

@media (min-width: 768px) {
  .hero__inner {
    transform: translateY(-2.5rem);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-red);
}

.hero h1 {
  margin: 1.25rem 0 0;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--brand-red);
}

.hero__lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.hero__actions .btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .hero__actions .btn {
    width: auto;
  }
}

.hero__support {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__support a {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

/* Main sections */
.page-main {
  flex: 1;
}

.section {
  margin-top: 3.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--zinc-900);
  margin: 0;
}

.section-lead {
  margin-top: 0.75rem;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--zinc-600);
}

@media (min-width: 768px) {
  .section-lead {
    font-size: 1rem;
  }
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-categories {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--zinc-900);
}

.card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--zinc-600);
}

.card--hover {
  transition: transform 0.15s, box-shadow 0.15s;
}

.card--hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.panel-muted {
  margin-top: 3.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .panel-muted {
    padding: 2.5rem 2.5rem;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 1rem;
}

.step__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 0.125rem;
}

.step__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-700);
}

.category-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon-box {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-red);
}

.icon-box--float {
  animation: lokallyFloat 2.6s ease-in-out infinite;
}

.icon-box--float-b { animation-delay: 0.2s; }
.icon-box--float-c { animation-delay: 0.4s; }
.icon-box--float-d { animation-delay: 0.6s; }
.icon-box--float-e { animation-delay: 0.8s; }
.icon-box--float-f { animation-delay: 1s; }

@keyframes lokallyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.panel-dark {
  border-radius: var(--radius-3xl);
  background: var(--zinc-900);
  color: #fff;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .panel-dark {
    padding: 2.5rem 2.5rem;
  }
}

.panel-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.panel-dark .section-title {
  color: #fff;
}

.panel-dark-inset {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.panel-dark-inset ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.panel-dark-inset li {
  margin-top: 0.5rem;
}

.actions-row {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .actions-row {
    flex-direction: row;
  }
}

/* App store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background 0.15s;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}

.store-badge__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.store-badge__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}

.store-badge__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.store-badge__name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .phone-wrap {
    justify-content: flex-end;
  }
}

.phone-glow {
  position: relative;
  width: 100%;
  max-width: 24rem;
}

.phone-glow::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(2rem);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.3);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  margin: 0 auto;
  width: 270px;
  height: 520px;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--zinc-950);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.phone-notch {
  width: 6rem;
  height: 1.5rem;
  margin: 0.75rem auto 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-body {
  padding: 2.5rem 1.5rem 1.5rem;
}

.phone-app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-app-header img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-2xl);
}

.phone-app-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.phone-app-header p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.phone-features {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.phone-feature {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.phone-feature strong {
  display: block;
  font-size: 0.875rem;
  color: #fff;
}

.phone-feature span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.phone-cta {
  margin-top: 2rem;
  border-radius: var(--radius-2xl);
  background: var(--brand-red);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
}

/* Page header */
.page-header {
  margin-top: 2.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.page-header h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--zinc-900);
}

.page-header p {
  margin: 0.75rem 0 0;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--zinc-600);
}

@media (min-width: 768px) {
  .page-header p {
    font-size: 1rem;
  }
}

/* About */
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s;
}

.media-card:hover img {
  transform: scale(1.02);
}

.media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1), transparent);
}

.split-panel {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.split-panel__grid {
  display: grid;
}

@media (min-width: 768px) {
  .split-panel__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.split-panel__content {
  padding: 2rem;
}

.split-panel__image {
  position: relative;
  min-height: 280px;
}

.split-panel__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: #fff;
  backdrop-filter: blur(8px);
}

.safety-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.safety-img img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  opacity: 0.75;
}

.safety-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.safety-img__tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

/* Careers glow */
.lokally-glow {
  position: relative;
  display: inline-block;
  color: var(--brand-red);
  border-radius: 14px;
  padding: 0 0.18em;
  animation: lokallyGlowPulse 2.8s ease-in-out infinite;
}

.lokally-glow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.18em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 49, 49, 0), rgba(216, 49, 49, 0.95), rgba(216, 49, 49, 0));
  filter: blur(0.2px);
  transform: translateX(-35%);
  animation: lokallyUnderlineSweep 2.6s ease-in-out infinite;
}

@keyframes lokallyGlowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(216, 49, 49, 0); }
  50% { box-shadow: 0 10px 24px rgba(216, 49, 49, 0.18); }
}

@keyframes lokallyUnderlineSweep {
  0% { transform: translateX(-35%); opacity: 0.55; }
  50% { opacity: 0.85; }
  100% { transform: translateX(35%); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .lokally-glow,
  .lokally-glow::after,
  .icon-box--float {
    animation: none !important;
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  border-radius: 9999px;
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--zinc-800);
}

.link-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .link-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-tile {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--zinc-900);
}

.link-tile:hover {
  background: #fff;
}

.chip-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .chip-list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chip {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-900);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Legal */
.legal-header {
  margin-top: 2.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.legal-header h1 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.legal-header p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.legal-body {
  margin-top: 2rem;
  margin-bottom: 3rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.legal-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--zinc-900);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--zinc-600);
}

.legal-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-body a {
  font-weight: 600;
  color: var(--zinc-900);
  text-decoration: underline;
}

/* AdSense */
.ad-slot {
  margin: 2.5rem auto;
  max-width: 100%;
  min-height: 100px;
  overflow: hidden;
  text-align: center;
}

.ad-slot ins {
  display: block;
}

/* Privacy Policy (PDPA) */
.privacy-page {
  padding-bottom: 4rem;
}

.privacy-hero {
  margin-top: 2.5rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: linear-gradient(135deg, #fff 0%, var(--zinc-50) 55%, rgba(216, 49, 49, 0.06) 100%);
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .privacy-hero {
    padding: 2.5rem 2.5rem;
  }
}

.privacy-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(216, 49, 49, 0.2);
  background: rgba(216, 49, 49, 0.08);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.privacy-hero__badge svg {
  width: 1rem;
  height: 1rem;
}

.privacy-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--zinc-900);
  line-height: 1.15;
}

.privacy-hero__meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.privacy-hero__intro {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--zinc-600);
}

.privacy-hero__company {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--zinc-600);
}

.privacy-hero__company strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--zinc-900);
}

.privacy-layout {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .privacy-layout {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }
}

.privacy-toc {
  border-radius: var(--radius-3xl);
  border: 1px solid var(--zinc-200);
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .privacy-toc {
    position: sticky;
    top: 5.5rem;
  }
}

.privacy-toc__title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zinc-500);
}

.privacy-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.privacy-toc li {
  counter-increment: toc;
  margin-top: 0.35rem;
}

.privacy-toc a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zinc-600);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s;
}

.privacy-toc a:hover {
  color: var(--brand-red);
}

.privacy-doc {
  margin-top: 0;
  margin-bottom: 0;
}

.privacy-doc h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  scroll-margin-top: 6rem;
}

.privacy-doc h2 .section-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-xl);
  background: var(--brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.privacy-doc h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zinc-800);
}

.legal-callout {
  margin: 1.25rem 0;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 1.25rem 1.5rem;
}

.legal-callout--accent {
  border-color: rgba(216, 49, 49, 0.25);
  background: rgba(216, 49, 49, 0.06);
}

.legal-callout strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: var(--zinc-900);
}

.legal-callout p {
  margin: 0;
}

.privacy-contact {
  margin-top: 1.5rem;
  border-radius: var(--radius-3xl);
  background: var(--zinc-900);
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .privacy-contact {
    padding: 2.5rem;
  }
}

.privacy-contact h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.privacy-contact p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.privacy-contact a {
  display: inline-flex;
  margin-top: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--brand-red);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.privacy-contact a:hover {
  opacity: 0.95;
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(228, 228, 231, 0.8);
  background: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer__brand {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-red);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  font-size: 0.875rem;
}

.site-footer__links a {
  font-weight: 600;
  color: var(--zinc-700);
}

.site-footer__links a:hover {
  color: var(--zinc-900);
}

.site-footer__bar {
  border-top: 1px solid rgba(228, 228, 231, 0.7);
  padding: 1.5rem 1rem;
}

.site-footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--zinc-500);
}

@media (min-width: 640px) {
  .site-footer__bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__legal a {
  font-weight: 600;
  color: var(--zinc-600);
}

.site-footer__legal a:hover {
  color: var(--zinc-900);
}

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

.text-link {
  font-weight: 800;
  text-decoration: underline;
}

.text-link--dark {
  color: var(--zinc-900);
}

.email-pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-xl);
  background: var(--brand-red);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.email-pill:hover {
  opacity: 0.95;
}
