:root {
  --bg: #050505;
  --bg-2: #0c0e10;
  --surface: rgba(14, 16, 18, 0.88);
  --surface-solid: #12151a;
  --ink: #f4f7f2;
  --muted: #9aa39a;
  --lime: #c0ff00;
  --lime-2: #a8e600;
  --blue: #00bfff;
  --blue-dim: rgba(0, 191, 255, 0.22);
  --line: rgba(192, 255, 0, 0.14);
  --wa: #25d366;
  --danger: #ff4d4d;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 1rem;
  --glow-lime: 0 0 24px rgba(192, 255, 0, 0.35);
  --glow-blue: 0 0 28px rgba(0, 191, 255, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 12% -8%, rgba(192, 255, 0, 0.1), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(0, 191, 255, 0.14), transparent 50%),
    linear-gradient(165deg, #070809 0%, #050505 42%, #0a1014 100%);
  background-attachment: fixed;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Görseller kırpılmadan tam görünsün */
img.fit,
.content-figure img,
.media-card img,
.gallery-item img,
.hero-bg img,
.about-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0a0a;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(192, 255, 0, 0.35);
  color: #000;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  border: 2px solid rgba(192, 255, 0, 0.55);
  box-shadow: var(--glow-lime);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
}

.brand-sub {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  border-radius: 0.55rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(244, 247, 242, 0.7);
  transition: 0.2s ease;
}

.nav-desktop a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-desktop a.active {
  background: rgba(192, 255, 0, 0.12);
  color: var(--lime);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 255, 0, 0.35);
  background: linear-gradient(135deg, rgba(192, 255, 0, 0.12), rgba(0, 191, 255, 0.1));
  color: var(--lime);
  font-size: 0.86rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-ig:hover {
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
  transform: translateY(-1px);
}

.btn-ig.mobile-ig {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-ig.hero-ig {
  background: rgba(0, 0, 0, 0.35);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--lime);
  font-size: 1.35rem;
  cursor: pointer;
}

.nav-mobile {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.25rem;
  background: rgba(0, 0, 0, 0.92);
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile .cta-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.nav-mobile[hidden] {
  display: none !important;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-call {
  background: var(--lime);
  color: #0a0a0a;
  box-shadow: var(--glow-lime);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-blue {
  background: var(--blue);
  color: #041018;
  box-shadow: var(--glow-blue);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.55) 40%, rgba(5, 5, 5, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.75), transparent 55%);
}

.hero-content {
  padding: 5.5rem 0 3.5rem;
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero-title span {
  display: block;
  color: var(--lime);
}

.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(244, 247, 242, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 255, 0, 0.28);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(244, 247, 242, 0.9);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
}

.section-lead {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.65;
}

.band {
  background:
    linear-gradient(180deg, rgba(0, 191, 255, 0.05), transparent 40%),
    rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-strip {
  padding: 0;
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.highlight-grid {
  display: grid;
  gap: 0.9rem;
}

.highlight-card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 16, 0.92);
  backdrop-filter: blur(10px);
}

.highlight-card.featured {
  border-color: rgba(192, 255, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(192, 255, 0, 0.08);
}

.highlight-card h3 {
  margin: 0.55rem 0 0.35rem;
  font-size: 1.05rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.highlight-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: rgba(192, 255, 0, 0.1);
  color: var(--lime);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  min-height: 240px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
}

.media-card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
}

.media-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.media-card p {
  margin: 0.35rem 0 0;
  color: rgba(244, 247, 242, 0.75);
  font-size: 0.88rem;
}

.area-link {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(192, 255, 0, 0.06), rgba(0, 191, 255, 0.04));
  transition: 0.2s ease;
}

.area-link:hover {
  border-color: rgba(192, 255, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--glow-lime);
}

.area-link strong {
  display: block;
  font-size: 1.02rem;
  color: var(--lime);
}

.area-link span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  overflow: hidden;
  transition: 0.2s ease;
}

.area-card:hover {
  border-color: rgba(192, 255, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--glow-lime);
}

.area-card-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.area-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.area-card-body {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.area-card-body strong {
  display: block;
  color: var(--lime);
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.cta-banner {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 1.35rem;
  border: 1px solid rgba(192, 255, 0, 0.28);
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(192, 255, 0, 0.16), transparent 55%),
    radial-gradient(500px 200px at 90% 100%, rgba(0, 191, 255, 0.16), transparent 50%),
    #0c1012;
}

.cta-banner h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
}

.cta-banner p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

/* About / contact */
.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-visual,
.map-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-card strong {
  display: block;
  color: var(--lime);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Area pages */
.area-layout {
  display: grid;
  gap: 1.5rem;
  padding: 2.2rem 0 4rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--blue);
}

.article h1 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--lime);
}

.prose p {
  margin: 0 0 1.05rem;
  line-height: 1.75;
  color: rgba(244, 247, 242, 0.88);
}

.prose h2 {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.content-figure {
  margin: 1.4rem 0 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.25);
  background: #000;
}

.content-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.faq {
  margin-top: 3rem;
}

.faq-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
}

details.glass {
  padding: 0.2rem 1rem 0.2rem;
}

details.glass summary {
  cursor: pointer;
  padding: 0.95rem 0;
  font-weight: 700;
  list-style: none;
}

details.glass summary::-webkit-details-marker {
  display: none;
}

details.glass p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.related-section {
  margin-top: 2.8rem;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 255, 0, 0.28);
  background: rgba(192, 255, 0, 0.08);
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 700;
}

.chip.dark {
  border-color: rgba(0, 191, 255, 0.35);
  background: rgba(0, 191, 255, 0.1);
  color: var(--blue);
}

.sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sidebar-box {
  padding: 1.1rem 1.15rem;
}

.sidebar-box .label,
.footer-label {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.sidebar-box nav a,
.area-side-list a {
  display: block;
  padding: 0.45rem 0;
  color: rgba(244, 247, 242, 0.78);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.area-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 420px;
  overflow: auto;
}

.area-side-list a.active {
  color: var(--lime);
  font-weight: 700;
}

.whats-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background:
    radial-gradient(400px 160px at 20% 0%, rgba(37, 211, 102, 0.25), transparent 60%),
    #0b1510;
  border: 1px solid rgba(37, 211, 102, 0.35);
  display: grid;
  gap: 0.7rem;
}

.whats-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.whats-card p {
  margin: 0;
  color: rgba(244, 247, 242, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 7.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.45);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid rgba(192, 255, 0, 0.4);
  background: #000;
}

.footer-brand h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.muted {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.4rem 0;
  color: rgba(244, 247, 242, 0.78);
  line-height: 1.5;
  font-size: 0.92rem;
}

.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 255, 0, 0.3);
  background: rgba(192, 255, 0, 0.08);
  color: var(--lime);
  font-weight: 700;
}

.footer-ig:hover {
  box-shadow: var(--glow-lime);
}

/* Floating CTA — sağ kenar, ikonlu şık butonlar */
.float-cta {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.float-btn:hover {
  transform: scale(1.06);
}

.float-btn .float-label {
  display: none;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.float-call {
  background: var(--lime);
  color: #0a0a0a;
}

.float-wa {
  background: var(--wa);
  color: #fff;
}

.pulse-call {
  overflow: visible;
}

.pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 2px solid rgba(192, 255, 0, 0.7);
  animation: callPulse 1.6s ease-out infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Motion */
.reveal {
  animation: rise 0.8s ease both;
}

.reveal-d1 {
  animation-delay: 0.12s;
}

.reveal-d2 {
  animation-delay: 0.24s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Admin */
.admin-wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 2rem auto 4rem;
}

.admin-card {
  padding: 1.35rem 1.4rem;
  margin-bottom: 1.15rem;
  background: #111418;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  color: var(--ink);
}

.admin-card h1,
.admin-card h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--lime);
}

.admin-card h2 {
  font-size: 1.6rem;
}

.form-label {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-label input,
.form-label textarea,
.form-label select,
.admin-card input[type="text"],
.admin-card input[type="password"],
.admin-card input[type="date"],
.admin-card textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0c0e;
  color: #fff;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.note-grid,
.stat-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.note-box,
.stat-box {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.note-box code {
  display: block;
  margin-top: 0.45rem;
  color: var(--lime);
  font-size: 1rem;
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  margin-top: 0.35rem;
}

.stat-box.phone .num {
  color: var(--lime);
}

.stat-box.wa .num {
  color: var(--wa);
}

.range-btns,
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.admin-tabs a {
  padding: 0.55rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 0.86rem;
}

.admin-tabs a.active {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-table th {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.msg {
  margin-top: 0.75rem;
  color: var(--lime);
  font-size: 0.9rem;
}

.msg error,
.msg.error {
  color: var(--danger);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 77, 77, 0.15);
  color: #ff8d8d;
}

.badge.ok {
  background: rgba(192, 255, 0, 0.12);
  color: var(--lime);
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (min-width: 640px) {
  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .note-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .split.two {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .area-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }

  .sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

@media (max-width: 639px) {
  .float-cta {
    right: 0.75rem;
    left: auto;
    top: auto;
    bottom: 1rem;
    transform: none;
    flex-direction: column;
  }

  .float-btn {
    width: 54px;
    height: 54px;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}
