:root {
  --primary: #7C3AED;
  --primary-l: #A78BFA;
  --fuchsia: #D946EF;
  --bg: #0D0A1A;
  --bg-sb: #0A0818;
  --bg-card: rgba(255, 255, 255, .04);
  --border: rgba(167, 139, 250, .12);
  --border-h: rgba(167, 139, 250, .25);
  --muted: rgba(255, 255, 255, .4);
  --dim: rgba(255, 255, 255, .6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh
}

input,
select,
textarea {
  font-family: inherit
}

button {
  font-family: inherit;
  cursor: pointer
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, .3);
  border-radius: 4px
}

/* ── LAYOUT ── */
.dash-wrap {
  display: flex;
  min-height: 100vh
}

/* ── SIDEBAR ── */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--bg-sb);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.sb-logo {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  text-decoration: none
}

.sb-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(124, 58, 237, .4);
  flex-shrink: 0
}

/* Logo resmi varsa gradient arka planı kaldır */
.sb-logo-icon:has(img) {
  background: transparent;
  box-shadow: none;
}

.sb-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff
}

.sb-logo-text span {
  background: linear-gradient(90deg, #A78BFA, #D946EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.sb-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto
}

.nav-sec {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 12px 6px;
  margin-top: 8px
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  margin-bottom: 2px;
  text-decoration: none
}

.nav-item:hover {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8)
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, .2), rgba(217, 70, 239, .1));
  color: #fff;
  border: 1px solid rgba(124, 58, 237, .25)
}

.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
  transition: background .2s
}

.nav-item.active .nav-icon {
  background: rgba(124, 58, 237, .2)
}

.nav-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px
}

.sb-user {
  padding: 16px 12px;
  border-top: 1px solid var(--border)
}

.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s
}

.user-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--border-h)
}

.user-ava {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

.user-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85)
}

.user-plan {
  font-size: 11px;
  color: rgba(255, 255, 255, .3)
}

.user-plan span {
  color: var(--primary-l);
  font-weight: 600
}

/* ── MAIN ── */
.main-content {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 10, 26, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

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

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .6);
  font-size: 20px;
  padding: 4px
}

.topbar-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.4px
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.tb-icon-btn {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  text-decoration: none;
  color: #fff
}

.tb-icon-btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--border-h)
}

.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: #D946EF;
  border-radius: 50%;
  border: 1px solid var(--bg)
}

.tb-add-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .35)
}

.tb-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 70, 239, .45)
}

/* ── PAGE ── */
.content-area {
  padding: 32px;
  flex: 1
}

.page {
  display: none;
  animation: fadeUp .22s ease
}

.page.active {
  display: block
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── WELCOME ── */
.welcome-band {
  background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(217, 70, 239, .08));
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.welcome-band::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .5), transparent)
}

.welcome-deco {
  position: absolute;
  font-size: 120px;
  opacity: .04;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  pointer-events: none
}

.welcome-text {
  position: relative;
  z-index: 1
}

.welcome-greeting {
  font-size: 13px;
  color: var(--primary-l);
  font-weight: 500;
  margin-bottom: 4px
}

.welcome-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 6px
}

.welcome-desc {
  font-size: 13px;
  color: var(--muted)
}

.welcome-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
  transition: all .2s;
  text-decoration: none
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn-danger-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, .1);
  color: #EF4444;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, .2);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, .4)
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
  }

  .btn-danger-sm:hover {
    background: rgba(239, 68, 68, .18)
  }
}

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: all .25s;
  cursor: pointer
}

.stat-card:hover {
  border-color: var(--border-h);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px)
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.si-purple {
  background: rgba(124, 58, 237, .15);
  border: 1px solid rgba(124, 58, 237, .2)
}

.si-pink {
  background: rgba(217, 70, 239, .12);
  border: 1px solid rgba(217, 70, 239, .2)
}

.si-green {
  background: rgba(52, 211, 153, .1);
  border: 1px solid rgba(52, 211, 153, .2)
}

.si-yellow {
  background: rgba(251, 191, 36, .1);
  border: 1px solid rgba(251, 191, 36, .2)
}

.si-red {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .2)
}

.link-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.12);
  color: #6EE7B7;
  border: 1px solid rgba(52, 211, 153, 0.2);
  letter-spacing: 0.3px;
}

.link-badge.new {
  background: rgba(124, 58, 237, 0.15);
  color: #A78BFA;
  border-color: rgba(124, 58, 237, 0.25);
}

.stat-trend {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px
}

.tr-up {
  background: rgba(52, 211, 153, .1);
  color: #6EE7B7
}

.tr-warn {
  background: rgba(251, 191, 36, .1);
  color: #FCD34D
}

.tr-info {
  background: rgba(124, 58, 237, .12);
  color: #A78BFA
}

.tr-red {
  background: rgba(239, 68, 68, .1);
  color: #FCA5A5
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px
}

.stat-lbl {
  font-size: 13px;
  color: var(--muted)
}

/* ── MAIN GRID ── */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px
}

.left-col,
.right-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* ── DASH CARD ── */
.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: clip;
  transition: border-color .2s
}

.dash-card:hover {
  border-color: var(--border-h)
}

.card-hd {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  letter-spacing: -.3px
}

.card-action {
  font-size: 12px;
  color: var(--primary-l);
  font-weight: 600;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none
}

.card-action:hover {
  color: #D946EF
}

.card-body {
  padding: 20px 24px
}

/* ── PET DETAY MİNİ KARTLAR ── */
.dash-card-mini {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s
}

.dash-card-mini:hover {
  border-color: rgba(167, 139, 250, .2)
}

.mini-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px
}

.mini-val {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}


/* ── PET ID CARDS ── */
.pets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 20px;
  padding: 20px 24px
}

.pet-mini {
  position: relative;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17L3 10l7-7 7 7-7 7z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"), linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 12px 16px;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.pet-mini.pet-add-card {
  background: rgba(255, 255, 255, .03);
  border: 2px dashed rgba(167, 139, 250, .3);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  min-height: 180px;
}

.pet-mini:hover:not(.pet-add-card) {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.pet-mini.lost-mode {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.2), 0 4px 16px rgba(239,68,68,0.3);
}

.pet-add-card:hover {
  border-color: rgba(124, 58, 237, .5) !important;
  background: rgba(124, 58, 237, .08) !important;
}

.add-circle {
  width: 44px;
  height: 44px;
  background: rgba(124, 58, 237, .1);
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 8px;
}

.idc-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 6px;
}

.pet-mini.lost-mode .idc-head {
  border-bottom-color: #ef4444;
}

.idc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1d4ed8;
  letter-spacing: 0.5px;
}

.pet-mini.lost-mode .idc-title {
  color: #dc2626;
  content: "KAYIP ALARMI";
}

.idc-logo {
  font-weight: 800;
  font-size: 14px;
  color: #ef4444;
}

.idc-logo span {
  color: #eab308;
}

.idc-photo {
  grid-column: 1;
  grid-row: 2 / 4;
  width: 100px;
  height: 125px;
  border-radius: 8px;
  background: #e2e8f0;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
}

.idc-info {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.idc-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.idc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.idc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.idc-item span {
  font-size: 10px;
  font-weight: 800;
  color: #2563eb;
  text-transform: uppercase;
}

.idc-footer {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.idc-nfc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(59,130,246,.4);
  transition: all .2s;
}

.idc-nfc-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59,130,246,.5);
}

.idc-nfc-link.empty {
  color: #64748b;
  background: #e2e8f0;
  box-shadow: none;
}
.idc-nfc-link.empty:hover { transform: none; box-shadow: none; pointer-events: none; }

.idc-del-btn {
  background: #fee2e2;
  color: #ef4444;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.idc-del-btn:hover {
  background: #fecaca;
}
.nfc-pulse {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite
}

/* ── VAX ── */
.vax-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .2s;
  cursor: pointer
}

.vax-row:last-child {
  border-bottom: none
}

.vax-row:hover {
  background: rgba(255, 255, 255, .03)
}

.vax-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0
}

.vi-done {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .15)
}

.vi-soon {
  background: rgba(251, 191, 36, .08);
  border: 1px solid rgba(251, 191, 36, .15)
}

.vi-urgent {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .15)
}

.vi-plan {
  background: rgba(124, 58, 237, .08);
  border: 1px solid rgba(124, 58, 237, .15)
}

.vax-info {
  flex: 1;
  min-width: 0
}

.vax-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.vax-pet {
  font-size: 11px;
  color: var(--muted)
}

.vax-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0
}

.vb-done {
  background: rgba(52, 211, 153, .1);
  color: #6EE7B7;
  border: 1px solid rgba(52, 211, 153, .2)
}

.vb-soon {
  background: rgba(251, 191, 36, .1);
  color: #FCD34D;
  border: 1px solid rgba(251, 191, 36, .2)
}

.vb-urgent {
  background: rgba(239, 68, 68, .1);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, .2)
}

.vb-plan {
  background: rgba(124, 58, 237, .1);
  color: #A78BFA;
  border: 1px solid rgba(124, 58, 237, .2)
}

/* ── ACTIVITY ── */
.act-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.act-row:last-child {
  border-bottom: none
}

.act-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0
}

.ai-nfc {
  background: rgba(124, 58, 237, .12);
  border: 1px solid rgba(124, 58, 237, .2)
}

.ai-lost {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .15)
}

.ai-vax {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .15)
}

.ai-file {
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .15)
}

.act-main {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
  margin-bottom: 2px
}

.act-main strong {
  color: #fff;
  font-weight: 600
}

.act-time {
  font-size: 11px;
  color: var(--muted)
}

/* ── LOST WIDGET ── */
.lost-widget {
  background: linear-gradient(145deg, rgba(239, 68, 68, .06), rgba(217, 70, 239, .04));
  border: 1px solid rgba(239, 68, 68, .15);
  border-radius: 20px;
  padding: 20px
}

.lost-wh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.lost-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, .85)
}

.lost-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .3)
}

.lost-pet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 8px
}

.lost-pet-row:last-child {
  margin-bottom: 0
}

.lost-pet-info {
  display: flex;
  align-items: center;
  gap: 10px
}

.lost-pet-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8)
}

.toggle {
  position: relative;
  width: 42px;
  height: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s;
  flex-shrink: 0
}

.toggle.on {
  background: linear-gradient(135deg, #D946EF, #EF4444);
  border-color: transparent;
  box-shadow: 0 0 12px rgba(217, 70, 239, .4)
}

.toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3)
}

.toggle.on .toggle-knob {
  transform: translateX(18px)
}

/* ── FILE ROW ── */
.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: background .2s
}

.file-row:last-child {
  border-bottom: none
}

.file-row:hover {
  background: rgba(255, 255, 255, .03)
}

.file-type-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0
}

.fti-pdf {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .15)
}

.fti-img {
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .15)
}

.fti-dcm {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .15)
}

.file-info {
  flex: 1;
  min-width: 0
}

.file-nm {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px
}

.file-mt {
  font-size: 11px;
  color: var(--muted)
}

.file-ext {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: .3px;
  flex-shrink: 0
}

.fe-pdf {
  background: rgba(239, 68, 68, .12);
  color: #FCA5A5
}

.fe-jpg {
  background: rgba(59, 130, 246, .12);
  color: #93C5FD
}

.fe-dcm {
  background: rgba(52, 211, 153, .1);
  color: #6EE7B7
}

/* ── PLAN WIDGET ── */
.plan-widget {
  background: linear-gradient(145deg, rgba(124, 58, 237, .12), rgba(217, 70, 239, .06));
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden
}

.plan-widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .5), transparent)
}

.plan-wt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600
}

.plan-wn {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px
}

.plan-wd {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px
}

.usage-row {
  margin-bottom: 10px
}

.usage-lrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px
}

.usage-lbl {
  font-size: 12px;
  color: var(--muted)
}

.usage-val {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6)
}

.usage-bar {
  height: 4px;
  background: rgba(255, 255, 255, .07);
  border-radius: 4px;
  overflow: hidden
}

.usage-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .5s ease
}

.fill-p {
  background: linear-gradient(90deg, #7C3AED, #A78BFA)
}

.fill-pk {
  background: linear-gradient(90deg, #D946EF, #F0ABFC)
}

.fill-b {
  background: linear-gradient(90deg, #3B82F6, #93C5FD)
}

.btn-upgrade {
  width: 100%;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .35);
  transition: all .2s
}

.btn-upgrade:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 70, 239, .4)
}

/* ── FORM / MODAL ── */
.form-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(124, 58, 237, .25);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  animation: fadeUp .2s ease
}

.form-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, .85)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px
}

.form-full {
  grid-column: 1/-1
}

.form-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px
}

.flabel {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  display: block
}

.finput {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  padding: 9px 13px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border .18s;
  outline: none
}

.finput:focus {
  border-color: #7C3AED
}

.finput::placeholder {
  color: rgba(255, 255, 255, .25)
}

select.finput option {
  background: #1a1530
}

textarea.finput {
  resize: vertical;
  min-height: 80px
}

/* ── MODAL OVERLAY ── */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal-bg.open {
  display: flex
}

.modal-box {
  background: #100C20;
  border: 1px solid var(--border-h);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp .2s ease
}

/* ── TABLE ── */
.tbl-wrap {
  overflow-x: auto
}

table {
  width: 100%;
  border-collapse: collapse
}

th {
  text-align: left;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  background: rgba(255, 255, 255, .02);
  white-space: nowrap
}

td {
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  vertical-align: middle
}

tr:last-child td {
  border-bottom: none
}

tr:hover td {
  background: rgba(124, 58, 237, .04)
}

/* ── TABS ── */
.tabs {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 20px
}

.tab {
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  transition: all .18s
}

.tab.active {
  background: rgba(124, 58, 237, .25);
  color: var(--primary-l)
}

.tab:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, .05)
}

/* ── NFC / TOKEN ── */
.token-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(124, 58, 237, .07);
  border: 1px solid rgba(124, 58, 237, .18);
  border-radius: 10px;
  margin-top: 10px
}

.token-code {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--primary-l);
  flex: 1
}

.copy-btn {
  padding: 5px 12px;
  border-radius: 7px;
  background: rgba(124, 58, 237, .15);
  border: 1px solid rgba(124, 58, 237, .25);
  color: var(--primary-l);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0
}

.copy-btn:hover {
  background: rgba(124, 58, 237, .3)
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600
}

.b-green {
  background: rgba(52, 211, 153, .1);
  color: #6EE7B7;
  border: 1px solid rgba(52, 211, 153, .2)
}

.b-red {
  background: rgba(239, 68, 68, .1);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, .2)
}

.b-purple {
  background: rgba(124, 58, 237, .15);
  color: #A78BFA;
  border: 1px solid rgba(124, 58, 237, .25)
}

.b-gray {
  background: rgba(255, 255, 255, .06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .09)
}

.dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  animation: blink 2s infinite
}

.dot-lost {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF4444;
  animation: blink 1s infinite
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #1a1530;
  border: 1px solid var(--border-h);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  transform: translateY(16px);
  opacity: 0;
  transition: all .28s;
  pointer-events: none
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

.toast.t-success {
  border-color: rgba(52, 211, 153, .3);
  color: #6EE7B7
}

.toast.t-error {
  border-color: rgba(239, 68, 68, .3);
  color: #FCA5A5
}

.toast.t-info {
  border-color: rgba(124, 58, 237, .3);
  color: #A78BFA
}

/* ── ALERT ── */
.alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px
}

.alert-warn {
  background: rgba(251, 191, 36, .08);
  border: 1px solid rgba(251, 191, 36, .2);
  color: #FCD34D
}

.alert-danger {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #FCA5A5
}

.alert-info {
  background: rgba(124, 58, 237, .09);
  border: 1px solid rgba(124, 58, 237, .2);
  color: #A78BFA
}

/* ── SIDEBAR OVERLAY ── */
.sb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 49;
  backdrop-filter: blur(4px)
}

.sb-overlay.show {
  display: block
}

/* ── AUTH PAGES ── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg)
}

.auth-box {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden
}

.auth-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .5), transparent)
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  text-decoration: none
}

.auth-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.5px
}

.auth-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted)
}

.auth-footer a {
  color: var(--primary-l);
  font-weight: 600;
  text-decoration: none
}

.auth-footer a:hover {
  color: #D946EF
}

.error-msg {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #FCA5A5;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .main-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {
  .sidebar {
    transform: translateX(-100%)
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0, 0, 0, .5)
  }

  .main-content {
    margin-left: 0
  }

  .hamburger-btn {
    display: flex !important
  }

  .content-area {
    padding: 20px
  }

  .welcome-band {
    flex-direction: column;
    align-items: flex-start
  }

  .welcome-actions {
    width: 100%
  }
}

@media(max-width:600px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .topbar {
    padding: 12px 16px
  }

  .pets-grid {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .form-full {
    grid-column: 1
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

/* ── EK MOBİL İYİLEŞTİRMELERİ ── */

/* tbl-wrap dokunu kaydırma */
.tbl-wrap {
  -webkit-overflow-scrolling: touch
}

/* 480px — küçük telefonlar */
@media(max-width:480px) {

  .content-area {
    padding: 16px 14px
  }

  .welcome-band {
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start
  }

  .welcome-actions {
    width: 100%;
    gap: 8px
  }

  .welcome-actions .btn-ghost {
    display: none
  }

  .welcome-title {
    font-size: 18px
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px
  }

  .stat-card {
    padding: 14px 14px
  }

  .stat-num {
    font-size: 24px
  }

  .pets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 14px
  }

  .pet-mini {
    grid-template-columns: 90px 1fr
  }

  .card-hd {
    padding: 14px 16px 12px
  }

  .card-body {
    padding: 14px 16px
  }

  .vax-row {
    padding: 12px 16px;
    gap: 10px
  }

  .file-row {
    padding: 10px 16px
  }

  .topbar {
    padding: 10px 14px
  }

  .topbar-title {
    font-size: 15px
  }

  .tb-add-btn {
    display: none
  }

  .modal-bg {
    padding: 10px
  }

  .modal-box {
    border-radius: 16px
  }

  .form-grid {
    padding: 14px
  }

  .form-actions {
    padding: 0 14px 14px
  }
}

/* 380px — çok küçük telefonlar */
@media(max-width:380px) {

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .pets-grid {
    grid-template-columns: 1fr
  }

  .content-area {
    padding: 12px
  }
}

/* ============================================================
   GLOBAL FOOTER STYLES
============================================================ */
footer {
  background: #090714;
  border-top: 1px solid rgba(167, 139, 250, 0.12);
  padding: 72px 24px 32px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(167, 139, 250, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  flex-shrink: 0;
}

.footer-logo-icon:has(img) {
  background: transparent;
  box-shadow: none;
}

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-logo-text span {
  background: linear-gradient(90deg, #A78BFA, #D946EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-mid {
  padding: 40px 0;
  border-bottom: 1px solid rgba(167, 139, 250, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.newsletter-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-input:focus {
  border-color: rgba(124, 58, 237, 0.4);
}

.newsletter-btn {
  background: linear-gradient(135deg, #7C3AED, #D946EF);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-copyright a {
  color: rgba(167, 139, 250, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: #A78BFA;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.nfc-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 6px 12px;
}

.nfc-cert-dot {
  width: 6px;
  height: 6px;
  background: #6EE7B7;
  border-radius: 50%;
  animation: cert-blink 2s ease-in-out infinite;
}

.nfc-cert span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

@keyframes cert-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}