/* ══ TOKENS ══ */
:root {
  --forest: #2d4a35;
  --forest-mid: #3d6147;
  --forest-light: #4e7a5a;
  --forest-dark: #1d3424;
  --sage: #8aab8f;
  --sage-light: #b8d4bb;
  --sage-pale: #e2ede4;
  --cream: #f5f3ef;
  --warm-white: #fafaf8;
  --charcoal: #1a1f1c;
  --mid-gray: #6b7570;
  --light-gray: #9ca8a0;
  --border: rgba(45, 74, 53, 0.12);
  --gold: #c9a84c;
  --nav-h: 72px;
}

section,
#cameras {
  scroll-margin-top: var(--nav-h);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 3px;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .85;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--mid-gray);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: var(--forest);
  color: #fff;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(45, 74, 53, .3);
  transition: all .2s;
}

.nav-cta:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: .3s;
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(26, 31, 28, .95);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.mob-nav a:hover {
  color: var(--sage-light);
}

/* ══ APP STORE MODAL ══ */
.store-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 31, 28, .7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.store-overlay.open {
  display: flex;
}

.store-modal {
  background: #fff;
  border-radius: 24px;
  padding: 44px 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .18);
}

.store-modal-icon {
  width: 64px;
  height: 64px;
  background: var(--sage-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.store-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.store-modal p {
  font-size: .9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 700;
  transition: all .2s;
}

.store-btn.apple {
  background: var(--charcoal);
  color: #fff;
}

.store-btn.apple:hover {
  background: #000;
}

.store-btn.google {
  background: #fff;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.store-btn.google:hover {
  background: var(--cream);
}

.store-btn svg {
  flex-shrink: 0;
}

.store-close {
  margin-top: 20px;
  font-size: .82rem;
  color: var(--mid-gray);
  cursor: pointer;
  display: inline-block;
}

.store-close:hover {
  color: var(--charcoal);
}

/* ══ SHARED ══ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--forest);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 560px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ 1. HERO ══ */
#hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 64px) 6% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(148deg, var(--cream) 0%, #eaf0eb 55%, #dde8de 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(138, 171, 143, .22) 0%, transparent 65%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, .09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .022;
  background-image: repeating-linear-gradient(-45deg, var(--forest) 0, var(--forest) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 74, 53, .08);
  border: 1px solid rgba(45, 74, 53, .18);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 26px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #3ecf5e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.hero-badge span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .8px;
  text-transform: uppercase;
}

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--charcoal);
  margin-bottom: 22px;
}

h1.hero-title em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-email-row {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin-bottom: 48px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(45, 74, 53, .16);
  border: 1.5px solid var(--border);
}

.hero-email-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: .92rem;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--charcoal);
}

.hero-email-input::placeholder {
  color: var(--light-gray);
}

.hero-email-btn {
  padding: 12px 24px;
  background: var(--forest);
  color: #fff;
  border: none;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}

.hero-email-btn:hover {
  background: var(--forest-mid);
}

.hero-proof {
  display: flex;
  gap: 36px;
}

.proof-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--forest);
}

.proof-item span {
  font-size: .78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.proof-div {
  width: 1px;
  background: var(--border);
}

/* Dashboard */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .13), 0 0 0 1px rgba(0, 0, 0, .04);
  overflow: hidden;
  animation: floatUp 7s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.dash-header {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  padding: 20px 22px;
}

.dh-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dh-welcome {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
}

.dh-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.dh-bell {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.dh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.dh-stat {
  background: rgba(255, 255, 255, .1);
  border-radius: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.dh-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.dh-change {
  font-size: .62rem;
  color: #7af09b;
  font-weight: 700;
}

.dh-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.dh-lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .55);
}

.dash-body {
  padding: 16px 20px;
  background: var(--cream);
}

.db-hdr {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
}

.db-all {
  font-size: .65rem;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0;
}

.cam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cam-card {
  background: var(--charcoal);
  border-radius: 10px;
  overflow: hidden;
}

.cam-feed {
  height: 64px;
  position: relative;
  background: linear-gradient(160deg, #243028, #111614);
}

.cam-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(138, 171, 143, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 171, 143, .06) 1px, transparent 1px);
  background-size: 14px 14px;
}

.cam-top {
  display: flex;
  justify-content: space-between;
  padding: 5px 7px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.cam-lbl {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: .55rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.cam-shield {
  width: 11px;
  height: 11px;
  background: rgba(45, 74, 53, .7);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cam-shield svg {
  width: 7px;
  height: 7px;
}

.cam-live {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: .52rem;
  color: #fff;
  font-weight: 700;
}

.live-dot {
  width: 4px;
  height: 4px;
  background: #ff3b30;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.cam-ts {
  position: absolute;
  bottom: 4px;
  left: 7px;
  font-size: .5rem;
  color: rgba(255, 255, 255, .4);
  z-index: 2;
  font-family: monospace;
}

.cam-info {
  padding: 6px 9px;
}

.cam-name {
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
}

.cam-prop {
  font-size: .58rem;
  color: rgba(255, 255, 255, .4);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .11), 0 0 0 1px rgba(0, 0, 0, .04);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floatUp 7s ease-in-out infinite;
}

.fc1 {
  top: 6%;
  right: -26px;
  animation-delay: -2s;
}

.fc2 {
  bottom: 10%;
  left: -26px;
  animation-delay: -4.5s;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.fc-icon.g {
  background: rgba(45, 74, 53, .1);
}

.fc-icon.gold {
  background: rgba(201, 168, 76, .12);
}

.fc-text strong {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--charcoal);
}

.fc-text span {
  font-size: .66rem;
  color: var(--mid-gray);
}

/* ══ TRUSTED ══ */
.trusted {
  background: #fff;
  padding: 26px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--light-gray);
  white-space: nowrap;
  letter-spacing: .5px;
}

.trusted-div {
  width: 1px;
  height: 22px;
  background: var(--border);
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--light-gray);
  opacity: .5;
}

/* ══ 2. ABOUT ══ */
#about {
  padding: 96px 6%;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-card {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-light));
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.about-emoji {
  font-size: 5rem;
  opacity: .35;
}

.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-float-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-float strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
}

.about-float span {
  font-size: .75rem;
  color: var(--mid-gray);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-val {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
}

.about-val-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.about-val-title {
  font-weight: 700;
  font-size: .88rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-val-desc {
  font-size: .78rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* ══ 3. FEATURES ══ */
#features {
  padding: 96px 6%;
  background: var(--cream);
}

.features-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 40px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.feat-card {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
  opacity: 0;
  transition: opacity .3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(45, 74, 53, .1);
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-card.hl {
  background: var(--forest);
  border-color: transparent;
  box-shadow: 0 14px 44px rgba(45, 74, 53, .24);
}

.feat-card.hl::after {
  opacity: 1;
  background: linear-gradient(90deg, var(--gold), #f0d990);
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(45, 74, 53, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feat-card.hl .feat-icon {
  background: rgba(255, 255, 255, .15);
}

.feat-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 9px;
}

.feat-card.hl .feat-title {
  color: #fff;
}

.feat-desc {
  font-size: .86rem;
  color: var(--mid-gray);
  line-height: 1.75;
  flex: 1;
}

.feat-card.hl .feat-desc {
  color: rgba(255, 255, 255, .7);
}

/* ══ 4. LIVE CAMERAS ══ */
#cameras {
  padding: 96px 6%;
  background: var(--warm-white);
}

.cams-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.cam-checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 26px 0 34px;
}

.chk-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.chk-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.chk-icon svg {
  width: 11px;
  height: 11px;
}

.chk-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.chk-text span {
  font-size: .8rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

.cams-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--charcoal);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .14);
}

.cd-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111614;
}

.cd-feed {
  height: 96px;
  position: relative;
  background: linear-gradient(160deg, #243028, #111614);
}

.cd-feed .cam-overlay {
  position: absolute;
  inset: 0;
}

.cd-feed .cam-top {
  padding: 7px 9px;
}

.cd-feed .cam-ts {
  bottom: 5px;
  left: 8px;
}

.cd-info {
  padding: 8px 10px;
}

.cd-name {
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
}

.cd-prop {
  font-size: .6rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 1px;
}

.cams-stats {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.cs-pill {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 9px 12px;
  text-align: center;
}

.cs-pill strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.cs-pill span {
  font-size: .6rem;
  color: rgba(255, 255, 255, .45);
}

.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--forest);
  color: #fff;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(45, 74, 53, .3);
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 74, 53, .4);
  background: var(--forest-mid);
}

/* ══ 5. HOW IT WORKS ══ */
#how {
  padding: 96px 6%;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  position: relative;
  overflow: hidden;
}

#how::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 171, 143, .14) 0%, transparent 65%);
}

.how-hdr {
  text-align: center;
  margin-bottom: 68px;
}

.how-hdr .section-eyebrow {
  color: var(--sage-light);
  justify-content: center;
}

.how-hdr .section-eyebrow::before {
  background: var(--sage);
}

.how-hdr .section-title {
  color: #fff;
  margin: 0 auto;
}

.how-hdr .section-sub {
  color: rgba(255, 255, 255, .6);
  margin: 12px auto 0;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, rgba(138, 171, 143, .3), rgba(138, 171, 143, .5), rgba(138, 171, 143, .3));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 10px;
}

.step-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  z-index: 1;
  background: transparent;
}

.step-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(138, 171, 143, .28);
  animation: spin 12s linear infinite;
  background: var(--forest);
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--forest-mid);
  border: 2px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

.step-title {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 9px;
}

.step-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

/* ══ 6. PRICING ══ */
#pricing {
  padding: 96px 6%;
  background: var(--cream);
}

.pricing-hdr {
  text-align: center;
  margin-bottom: 18px;
}

.pricing-hdr .section-eyebrow {
  justify-content: center;
}

.pricing-hdr .section-sub {
  margin: 0 auto;
  text-align: center;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 24px 0 48px;
}

.bill-lbl {
  font-size: .86rem;
  font-weight: 600;
  color: var(--mid-gray);
}

.bill-lbl.on {
  color: var(--forest);
}

.track {
  width: 50px;
  height: 27px;
  background: var(--forest);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}

.thumb {
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .15);
  transition: left .28s;
}

.track.ann .thumb {
  left: 26px;
}

.save-tag {
  background: rgba(201, 168, 76, .14);
  border: 1px solid rgba(201, 168, 76, .28);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 18px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-3px);
}

.plan-card.pop {
  background: var(--forest);
  border-color: transparent;
  box-shadow: 0 22px 60px rgba(45, 74, 53, .28);
  transform: scale(1.04);
}

.plan-card.pop:hover {
  transform: scale(1.04) translateY(-3px);
}

.pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 15px;
  border-radius: 18px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 168, 76, .35);
}

.plan-ico {
  font-size: 1.3rem;
  margin-bottom: 13px;
}

.plan-tier {
  font-weight: 700;
  font-size: .85rem;
  color: var(--mid-gray);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pop .plan-tier {
  color: rgba(255, 255, 255, .6);
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.pop .plan-price {
  color: #fff;
}

.plan-per {
  font-size: .8rem;
  color: var(--mid-gray);
  margin-bottom: 26px;
}

.pop .plan-per {
  color: rgba(255, 255, 255, .55);
}

.plan-hr {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.pop .plan-hr {
  background: rgba(255, 255, 255, .15);
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .86rem;
  color: var(--mid-gray);
}

.pop .plan-feats li {
  color: rgba(255, 255, 255, .8);
}

.plan-feats li.off {
  opacity: .38;
}

.ck {
  color: var(--forest);
  font-weight: 800;
  flex-shrink: 0;
}

.pop .ck {
  color: var(--sage-light);
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  border: 2px solid var(--forest);
  color: var(--forest);
  transition: all .25s;
  cursor: pointer;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.plan-btn:hover {
  background: var(--forest);
  color: #fff;
}

.pop .plan-btn {
  background: #fff;
  border-color: #fff;
  color: var(--forest);
}

.pop .plan-btn:hover {
  background: var(--sage-light);
}

/* ══ 7. CONTACT ══ */
#contact {
  padding: 96px 6%;
  background: var(--warm-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}

.ct-ico {
  width: 38px;
  height: 38px;
  background: var(--sage-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.ct-lbl {
  font-size: .75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.ct-val {
  font-size: .82rem;
  color: var(--mid-gray);
}

.ct-form-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}

.ct-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-input {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  width: 100%;
  transition: border-color .2s;
  outline: none;
}

.form-input::placeholder {
  color: var(--light-gray);
}

.form-input:focus {
  border-color: var(--forest);
}

.form-input.full {
  grid-column: span 2;
}

textarea.form-input {
  resize: none;
  height: 100px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  margin-top: 6px;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(45, 74, 53, .28);
}

.form-submit:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* ══ FOOTER ══ */
footer {
  background: var(--charcoal);
}

.footer-main {
  padding: 60px 6% 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .83rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 9px;
}

.soc-btn {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  transition: all .2s;
  cursor: pointer;
}

.soc-btn:hover {
  background: var(--forest);
  color: #fff;
}

.footer-col-hdr {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .48);
  transition: color .2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .22);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, .28);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6);
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-email-row {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-card {
    min-height: unset;
  }

  .cams-inner {
    grid-template-columns: 1fr;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .plan-card.pop {
    transform: scale(1);
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }

  .feat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  .features-hdr {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-input.full {
    grid-column: auto;
  }
}

/* ══ LEGAL PAGES ══ */
nav.nav-legal {
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 248, .96);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--forest);
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--mid-gray);
  transition: all .2s;
}

.nav-back:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.nav-back svg {
  transition: transform .2s;
}

.nav-back:hover svg {
  transform: translateX(-2px);
}

.page-hero {
  padding: calc(var(--nav-h) + 56px) 6% 56px;
  background: linear-gradient(148deg, var(--cream) 0%, #eaf0eb 55%, #dde8de 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 171, 143, .2) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 760px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}

.page-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--forest);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.page-hero-meta {
  font-size: .85rem;
  color: var(--mid-gray);
}

.page-hero-meta span {
  color: var(--forest);
  font-weight: 600;
}

.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2% 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.toc-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 14px;
}

.toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc a {
  font-size: .83rem;
  color: var(--mid-gray);
  padding: 7px 12px;
  border-radius: 8px;
  display: block;
  transition: all .2s;
  border-left: 2px solid transparent;
  line-height: 1.4;
}

.toc a:hover,
.toc a.active {
  color: var(--forest);
  background: var(--sage-pale);
  border-left-color: var(--forest);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.legal-section p {
  font-size: .92rem;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.legal-section li {
  font-size: .92rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.legal-section strong {
  color: var(--charcoal);
  font-weight: 600;
}

.legal-content a.text-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a.text-link:hover {
  color: var(--forest-mid);
}

.info-box {
  background: var(--sage-pale);
  border: 1px solid rgba(45, 74, 53, .15);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.info-box p {
  color: var(--forest);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: .88rem;
}

.data-table th {
  background: var(--sage-pale);
  color: var(--forest);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(45, 74, 53, .15);
}

.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--mid-gray);
  vertical-align: top;
  line-height: 1.6;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
}

.step-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step-item .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
  margin-top: 2px;
  z-index: 1;
  border: none;
}

.step-body {
  padding-bottom: 28px;
  flex: 1;
}

.step-body strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.step-body p {
  font-size: .88rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin: 0;
}

.request-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 14px;
}

.request-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.request-card p {
  font-size: .88rem;
  color: var(--mid-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

select.form-input {
  cursor: pointer;
}

.form-note {
  font-size: .78rem;
  color: var(--light-gray);
  margin-top: 10px;
}

.form-input.mb-12 {
  margin-bottom: 12px;
}

.cookie-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.cookie-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.cookie-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--cream);
  cursor: pointer;
  user-select: none;
}

.cookie-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-type-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.badge-essential {
  background: rgba(45, 74, 53, .12);
  color: var(--forest);
}

.badge-analytics {
  background: rgba(201, 168, 76, .12);
  color: #8a6f1a;
}

.badge-functional {
  background: rgba(66, 133, 244, .1);
  color: #1a56b0;
}

.badge-marketing {
  background: rgba(230, 80, 80, .08);
  color: #b03030;
}

.cookie-card-title {
  font-weight: 700;
  font-size: .92rem;
  color: var(--charcoal);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: .3s;
  cursor: pointer;
}

.toggle-track::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

input:checked+.toggle-track {
  background: var(--forest);
}

input:checked+.toggle-track::before {
  left: 23px;
}

input:disabled+.toggle-track {
  opacity: .6;
  cursor: not-allowed;
}

.cookie-card-body {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.cookie-card-body p {
  font-size: .86rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}

.cookie-card-body p:last-child {
  margin-bottom: 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
  margin-top: 10px;
}

.cookie-table th {
  background: var(--sage-pale);
  color: var(--forest);
  font-weight: 700;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid rgba(45, 74, 53, .12);
}

.cookie-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--mid-gray);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.pref-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(45, 74, 53, .28);
}

.btn-save:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

.btn-reject {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: transparent;
  color: var(--mid-gray);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all .2s;
}

.btn-reject:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.pref-note {
  font-size: .78rem;
  color: var(--light-gray);
}

.mt-16 {
  margin-top: 16px;
}

.footer-legal {
  flex-wrap: wrap;
}

.footer-legal a.active {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Landing page utilities */
.delay-1 {
  transition-delay: .1s;
}

.delay-15 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-45 {
  transition-delay: .45s;
}

.delay-5 {
  transition-delay: .5s;
}

.section-sub-narrow {
  max-width: 360px;
}

.section-sub-center {
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow-center {
  justify-content: center;
}

.text-center {
  text-align: center;
  margin-bottom: 56px;
}

.cameras-embed {
  margin-top: 80px;
  background: var(--warm-white);
  border-radius: 24px;
  padding: 64px 48px;
}

.title-em {
  font-style: italic;
  color: var(--forest);
}

.mob-nav-cta {
  margin-top: 8px;
}

.plan-btn-block {
  display: block;
  text-align: center;
}

.contact-promo {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--sage-pale);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.contact-promo-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.contact-promo p {
  font-size: .82rem;
  color: var(--mid-gray);
  margin-bottom: 14px;
  line-height: 1.6;
}

.btn-app-sm {
  font-size: .82rem;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .page-body {
    grid-template-columns: 1fr;
  }

  .toc {
    display: none;
  }

  .data-table {
    font-size: .8rem;
  }

  .cookie-table {
    font-size: .78rem;
  }
}