:root {
  --bg: #f3f6f2;
  --bg-deep: #e7efe3;
  --surface: #ffffff;
  --ink: #1a2e1f;
  --muted: #5d7264;
  --line: #d5e0d8;
  --brand: #1f7a4d;
  --brand-2: #0f5c38;
  --accent: #e8a317;
  --warn: #d97706;
  --danger: #c2410c;
  --ok: #15803d;
  --shadow: 0 10px 30px rgba(26, 46, 31, 0.08);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9eedf 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #f7e7c2 0%, transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body { margin: 0; }

h1, h2, h3, .brand-mark, .stat-value, .tv-title {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.app-header {
  background: linear-gradient(120deg, #123d28 0%, #1f7a4d 55%, #246b45 100%);
  box-shadow: 0 8px 24px rgba(18, 61, 40, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-header .navbar-brand,
.app-header .nav-link,
.app-header .nav-user {
  color: #f4fff8 !important;
}

.app-header .nav-link {
  font-weight: 500;
  opacity: 0.9;
  border-radius: 999px;
  padding: 0.4rem 0.85rem !important;
}

.app-header .nav-link:hover {
  background: rgba(255,255,255,0.12);
  opacity: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 163, 23, 0.25);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.app-main { min-height: calc(100vh - 64px); }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  background: linear-gradient(160deg, #fff 0%, #f7fbf7 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-2);
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn-brand:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a2e1f;
  font-weight: 600;
}

.visit-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom-width: 1px;
}

.badge-pay-paid { background: #dcfce7; color: #166534; }
.badge-pay-pending { background: #ffedd5; color: #9a3412; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-ok { background: #dcfce7; color: #166534; }
.status-warn { background: #fef3c7; color: #92400e; }
.status-critical { background: #ffedd5; color: #9a3412; }
.status-expired { background: #fee2e2; color: #991b1b; animation: pulse 1.2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.row-expired { background: #fff1f1 !important; }
.row-critical { background: #fff7ed !important; }
.row-warn { background: #fffbeb !important; }

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.login-card {
  width: min(420px, 100%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.login-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.login-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* TV Screen */
.tv-body {
  background: #0b1610;
  color: #e8f5ec;
  min-height: 100vh;
  margin: 0;
}

.tv-wrap {
  min-height: 100vh;
  padding: 1.5rem 2rem 2rem;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(31,122,77,0.35), transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(232,163,23,0.15), transparent 55%),
    #0b1610;
}

.tv-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 1rem;
}

.tv-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
}

.tv-clock {
  font-size: 1.4rem;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

.tv-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.55rem;
}

.tv-table th {
  text-align: left;
  color: rgba(232,245,236,0.55);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 1rem 0.5rem;
}

.tv-table td {
  padding: 1rem 1.1rem;
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  background: rgba(255,255,255,0.05);
}

.tv-table tr td:first-child { border-radius: 12px 0 0 12px; }
.tv-table tr td:last-child { border-radius: 0 12px 12px 0; }

.tv-table tr.tv-ok td { box-shadow: inset 4px 0 0 #22c55e; }
.tv-table tr.tv-warn td { box-shadow: inset 4px 0 0 #eab308; background: rgba(234,179,8,0.08); }
.tv-table tr.tv-critical td,
.tv-table tr.tv-expired td { box-shadow: inset 4px 0 0 #ef4444; background: rgba(239,68,68,0.12); }

.tv-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}
.tv-dot.ok { background: #22c55e; }
.tv-dot.warn { background: #eab308; }
.tv-dot.critical, .tv-dot.expired { background: #ef4444; }

/* Live player */
.live-body {
  background: #111;
  color: #f5f5f5;
  min-height: 100vh;
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .live-grid { grid-template-columns: 1fr 1fr; }
}

.cam-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.cam-box video, .cam-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.cam-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0,0,0,0.55);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

.form-control, .form-select {
  border-radius: 10px;
  border-color: var(--line);
  padding: 0.65rem 0.85rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(31,122,77,0.15);
}

.credit-banner {
  background: linear-gradient(90deg, #ecfdf5, #fef9c3);
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.table > :not(caption) > * > * {
  vertical-align: middle;
}

/* ─── PlayTrack Landing ─── */
.landing-page { overflow-x: hidden; }

.landing-brand { color: #fff !important; text-decoration: none; }

.landing-hero {
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(232,163,23,0.18), transparent 55%),
    linear-gradient(145deg, #062416 0%, #0f5c38 48%, #123d28 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.landing-nav-links > a:not(.btn) {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.landing-nav-links > a:not(.btn):hover { color: #fff; }

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: 1.08rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visuals {
  position: relative;
  min-height: 360px;
}

.mock-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  width: min(100%, 380px);
}

.mock-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  background: rgba(0,0,0,0.25);
  font-size: 0.82rem;
}

.mock-panel-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ef4444;
}
.mock-panel-bar span:nth-child(2) { background: #eab308; }
.mock-panel-bar span:nth-child(3) { background: #22c55e; }
.mock-panel-bar strong { margin-left: 0.5rem; font-weight: 600; }

.mock-panel-body { padding: 0.85rem; display: grid; gap: 0.55rem; }

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
}

.mock-row em { font-style: normal; opacity: 0.85; font-variant-numeric: tabular-nums; }
.mock-row i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; display: block;
}
.mock-row.warn i { background: #eab308; }
.mock-row.critical i { background: #ef4444; }

.mock-phone {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 160px;
  background: #111;
  border-radius: 28px;
  padding: 10px;
  border: 3px solid #333;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(6deg);
}

.mock-phone-notch {
  width: 56px; height: 8px; border-radius: 8px;
  background: #222; margin: 4px auto 8px;
}

.mock-phone-screen {
  background: linear-gradient(160deg, #1a3d2a, #0b1610);
  border-radius: 18px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  padding: 0.65rem;
}

.mock-phone-cam {
  margin-top: 1.5rem;
  height: 55%;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.12), transparent 40%),
    linear-gradient(180deg, #2d5a3f, #163024);
}

.mock-phone-caption {
  position: absolute;
  left: 0.65rem; right: 0.65rem; bottom: 0.65rem;
  display: flex; flex-direction: column; gap: 0.15rem;
  font-size: 0.72rem;
}

.live-badge {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-2);
  font-weight: 800;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.landing-section { padding: 4.5rem 0; }
.landing-section-alt { background: var(--bg-deep); }

.section-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.module-card span { font-size: 1.6rem; display: block; margin-bottom: 0.55rem; }
.module-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.module-card p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.55; }

.how-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 0.5rem;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 150px;
}

.how-step span {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.how-step p { margin: 0; font-weight: 600; font-size: 0.95rem; }
.how-arrow { color: var(--brand); font-size: 1.4rem; font-weight: 700; }

@media (min-width: 993px) {
  .how-steps { flex-wrap: nowrap; }
  .how-arrow { transform: rotate(-90deg); }
}

.camera-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.camera-copy h2 {
  font-family: var(--display);
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
}

.camera-copy > p { color: var(--muted); line-height: 1.7; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.check-list li {
  padding: 0.4rem 0;
  font-weight: 550;
}

.camera-price-badge {
  background: linear-gradient(135deg, #fef9c3, #fde68a);
  border: 1px solid #fbbf24;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.camera-price-badge .badge-label {
  font-weight: 700;
  color: #92400e;
  display: block;
  margin-bottom: 0.25rem;
}

.camera-price-badge .badge-text {
  font-size: 0.9rem;
  color: #78350f;
}

.phone-frame {
  width: min(260px, 100%);
  margin: 0 auto;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  border: 4px solid #2a2a2a;
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}

.phone-frame-notch {
  width: 70px; height: 10px; border-radius: 10px;
  background: #222; margin: 6px auto 10px;
}

.phone-frame-body {
  background: #0b1610;
  border-radius: 24px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  padding: 0.75rem;
}

.phone-cam-feed {
  margin-top: 1.75rem;
  height: 58%;
  border-radius: 12px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.15), transparent 45%),
    linear-gradient(180deg, #2f6848, #173528);
}

.phone-cam-meta {
  position: absolute;
  left: 0.75rem; right: 0.75rem; bottom: 0.85rem;
  color: #e8f5ec;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.tv-mock { max-width: 820px; margin: 0 auto; }
.tv-bezel {
  background: #1a1a1a;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.tv-screen {
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(31,122,77,0.35), transparent 60%),
    #0b1610;
  border-radius: 10px;
  padding: 1.25rem 1.5rem 1.5rem;
  color: #e8f5ec;
  min-height: 280px;
}
.tv-screen-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--display);
}
.tv-mock-table { width: 100%; border-collapse: separate; border-spacing: 0 0.45rem; }
.tv-mock-table th {
  text-align: left;
  color: rgba(232,245,236,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 0.85rem 0.35rem;
}
.tv-mock-table td {
  padding: 0.85rem;
  background: rgba(255,255,255,0.05);
  font-size: 1.05rem;
}
.tv-mock-table tr td:first-child { border-radius: 10px 0 0 10px; }
.tv-mock-table tr td:last-child { border-radius: 0 10px 10px 0; }
.tv-mock-table tr.ok td { box-shadow: inset 4px 0 0 #22c55e; }
.tv-mock-table tr.warn td { box-shadow: inset 4px 0 0 #eab308; background: rgba(234,179,8,0.08); }
.tv-mock-table tr.critical td { box-shadow: inset 4px 0 0 #ef4444; background: rgba(239,68,68,0.12); }
.tv-status-dot {
  display: inline-block;
  width: 12px; height: 12px; border-radius: 50%;
  background: #22c55e;
}
.tv-mock-table tr.warn .tv-status-dot { background: #eab308; }
.tv-mock-table tr.critical .tv-status-dot { background: #ef4444; }
.tv-stand {
  width: 120px; height: 14px;
  background: #2a2a2a;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.loyalty-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.loyalty-card span { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.loyalty-card h3 { font-size: 1rem; margin: 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefits-grid div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  font-weight: 600;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
}

.plan-card.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 16px 40px rgba(31,122,77,0.14);
  transform: translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 2.6rem;
}

.plan-price {
  margin: 1rem 0 1.25rem;
  font-family: var(--display);
}

.plan-price strong {
  font-size: 2.4rem;
  color: var(--brand-2);
  font-weight: 800;
}

.plan-price span { color: var(--muted); font-size: 0.95rem; }
.plan-price.text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-2);
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
}

.plan-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.plan-card li:last-child { border: 0; }
.plan-card li.muted { color: var(--muted); }
.plan-card li.excluded { color: var(--muted); font-style: italic; font-size: 0.85rem; }

.pricing-setup-note {
  text-align: center;
  color: var(--muted);
  margin-top: 1.5rem;
  font-size: 0.92rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.landing-cta {
  background: linear-gradient(135deg, #123d28, #1f7a4d);
  color: #fff;
  padding: 4.5rem 2rem;
}

.landing-cta h2 {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.landing-cta p {
  opacity: 0.85;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.landing-footer {
  background: #0a1f14;
  color: #fff;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  text-align: center;
}

.landing-page .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 992px) {
  .hero-grid,
  .camera-split,
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .hero-visuals { min-height: 420px; justify-self: center; width: 100%; max-width: 420px; }
  .mock-phone { right: 8%; }
  .how-arrow { transform: rotate(0deg); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .landing-nav-links > a:not(.btn):nth-child(-n+4) { display: none; }
  .mock-phone { width: 130px; }
}

