:root {
  --primary: #073845;
  --primary-dark: #032832;
  --accent: #a8d72a;
  --accent-dark: #7fa51f;
  --graphite: #20272b;
  --muted: #68767b;
  --line: #dce5e3;
  --soft: #f4f7f6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 40, 50, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(7, 56, 69, .08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-cta {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #284149;
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: rgba(168, 215, 42, .13);
}

.nav-cta {
  color: var(--primary-dark);
  background: var(--accent);
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 620px;
  height: calc(100vh - 94px);
  max-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 40, 50, .96) 0%, rgba(3, 40, 50, .78) 45%, rgba(3, 40, 50, .34) 100%),
    linear-gradient(0deg, rgba(3, 40, 50, .92) 0%, rgba(3, 40, 50, .08) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 54px 0;
  color: var(--white);
}

.hero-logo-card {
  width: min(340px, 100%);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  margin-bottom: 22px;
}

.hero-logo-card img {
  width: 100%;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--primary-dark);
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 14px;
}

h3 {
  color: var(--primary-dark);
  font-size: 21px;
  line-height: 1.22;
}

.hero p {
  max-width: 790px;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.hero-actions,
.center-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(168, 215, 42, .24);
}

.button-primary {
  color: var(--white);
  background: var(--primary);
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
}

.button-ghost-dark {
  color: var(--primary);
  border-color: rgba(7, 56, 69, .24);
  background: transparent;
}

.full {
  width: 100%;
}

.intro-band {
  background: var(--primary-dark);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
}

.intro-card {
  padding: 34px 30px;
  background: var(--primary);
}

.intro-card span {
  color: var(--accent);
  font-weight: 900;
}

.intro-card h2 {
  color: var(--white);
  font-size: 22px;
}

.intro-card p {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 0;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--primary-dark);
  overflow: hidden;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, .78);
}

.watermark::after {
  content: "LA";
  position: absolute;
  right: -28px;
  bottom: -92px;
  color: rgba(255, 255, 255, .035);
  font-size: 340px;
  font-weight: 900;
  line-height: .8;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.page-hero p,
.split p,
.feature-panel p,
.area-card p,
.team-card p,
.doc-card p,
.article-card p,
.legal-text p {
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.area-card,
.team-card,
.doc-card,
.article-card,
.faq-item,
.contact-card,
.feature-panel,
.area-detail-card,
.admin-login,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(3, 40, 50, .06);
}

.area-card,
.team-card,
.doc-card,
.article-card,
.faq-item {
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.area-card:hover,
.team-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 215, 42, .55);
  box-shadow: var(--shadow);
}

.area-card span,
.article-card span,
.team-status {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.area-card h3,
.article-card h3 {
  margin: 9px 0 10px;
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: center;
}

.split-media {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.steps-list {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.steps-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, .86);
}

.steps-list.light li {
  color: var(--graphite);
}

.steps-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 900;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
}

.team-avatar {
  width: 104px;
  height: 104px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(168, 215, 42, .86), rgba(255, 255, 255, .92));
  border: 1px solid rgba(7, 56, 69, .12);
  font-weight: 900;
  font-size: 28px;
}

.team-card .team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.team-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill,
.category-pills span {
  border: 1px solid rgba(7, 56, 69, .12);
  color: var(--primary);
  background: rgba(168, 215, 42, .1);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.doc-card h3 {
  font-size: 18px;
}

.section-cta {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "LA";
  position: absolute;
  right: 20px;
  bottom: -70px;
  color: rgba(255, 255, 255, .05);
  font-size: 170px;
  font-weight: 900;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 92px 0 72px;
  background:
    linear-gradient(135deg, rgba(3, 40, 50, .96), rgba(7, 56, 69, .9)),
    var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "LA";
  position: absolute;
  right: -30px;
  bottom: -95px;
  color: rgba(255, 255, 255, .045);
  font-size: 280px;
  font-weight: 900;
}

.page-hero h1,
.page-hero p,
.page-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  gap: 42px;
  align-items: center;
}

.page-hero-logo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel,
.area-detail-card,
.contact-card,
.admin-login,
.admin-panel {
  padding: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 2px;
}

.area-detail-card {
  background: rgba(255, 255, 255, .95);
}

.area-detail-card p {
  margin-bottom: 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(168, 215, 42, .55);
  outline-offset: 2px;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--graphite);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  color: var(--primary);
  font-weight: 800;
}

.contact-card {
  position: sticky;
  top: 100px;
}

.contact-card a,
.site-footer a {
  color: var(--primary);
  font-weight: 800;
}

.legal-text h2 {
  margin-top: 30px;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--primary-dark);
  padding: 68px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .75fr .9fr;
  gap: 34px;
}

.footer-brand img {
  width: 230px;
  padding: 12px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--radius);
}

.site-footer h2 {
  color: var(--white);
  font-size: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .88);
  margin: 7px 0;
}

.legal-note {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  margin-top: 44px;
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 160;
}

.float-whatsapp {
  border: 0;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--accent);
  min-height: 52px;
  padding: 0 20px;
  box-shadow: 0 14px 38px rgba(3, 40, 50, .22);
  font-weight: 900;
  cursor: pointer;
}

.wa-menu {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 260px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px;
}

.wa-menu button {
  border: 0;
  background: var(--soft);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 12px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.chatbot {
  position: fixed;
  right: 20px;
  bottom: 86px;
  z-index: 170;
  width: min(390px, calc(100vw - 28px));
}

.chatbot-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.chatbot-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  color: var(--white);
  background: var(--primary);
  padding: 16px;
}

.chatbot-head span {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.chatbot-head button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.chatbot-body,
.chatbot-actions {
  padding: 16px;
}

.chatbot-body p {
  margin-bottom: 10px;
}

.chatbot-body input {
  margin-top: 8px;
}

.chatbot-actions {
  display: grid;
  gap: 8px;
  padding-top: 0;
}

.chatbot-actions button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--primary);
  padding: 11px 12px;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-actions .button-accent {
  border: 0;
  color: var(--primary-dark);
  background: var(--accent);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--primary);
  padding: 10px 14px;
  font-weight: 900;
}

.admin-tabs button.is-active {
  background: var(--primary);
  color: var(--white);
}

.admin-view {
  display: none;
}

.admin-view.is-active {
  display: grid;
  gap: 18px;
}

.contacts-table {
  overflow-x: auto;
}

.contacts-table table {
  width: 100%;
  border-collapse: collapse;
}

.contacts-table th,
.contacts-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  h1 {
    font-size: 44px;
  }

  .area-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 680px;
    height: auto;
  }

  .hero-content {
    padding: 66px 0 52px;
  }

  .hero-logo-card {
    width: min(300px, 100%);
    padding: 14px;
  }

  h1,
  .page-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 17px;
  }

  .intro-grid,
  .split,
  .split-media,
  .page-hero-grid,
  .team-grid,
  .area-grid,
  .doc-grid,
  .article-grid,
  .contact-layout,
  .form-grid,
  .admin-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 72px 0 56px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    width: 90px;
    height: 90px;
  }

  .cta-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    position: static;
  }

  .float-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-whatsapp {
    width: 56px;
    min-height: 56px;
    padding: 0;
    font-size: 0;
  }

  .float-whatsapp::before {
    content: "WA";
    font-size: 14px;
  }

  .chatbot {
    right: 14px;
    bottom: 78px;
  }
}

.help-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.help-card { display: block; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 34px rgba(3, 40, 50, .06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.help-card:hover { transform: translateY(-3px); border-color: rgba(168, 215, 42, .55); box-shadow: var(--shadow); }
.help-card h3 { font-size: 18px; margin-bottom: 8px; }
.help-card p { color: var(--muted); margin-bottom: 0; }
.department-grid .area-card { min-height: 250px; }
.tag-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li { border: 1px solid rgba(7, 56, 69, .14); background: rgba(168, 215, 42, .10); color: var(--primary); border-radius: 999px; padding: 8px 11px; font-weight: 800; font-size: 13px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq-item h3 { margin-bottom: 8px; font-size: 18px; }
.contact-preview { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: center; }
.contact-preview iframe, .map-panel iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--soft); }
.map-panel iframe { height: 460px; }
.admin-app { min-height: 100vh; background: var(--soft); color: var(--graphite); }
.admin-login-card { width: min(460px, calc(100% - 28px)); margin: 0 auto; padding: 42px 28px; display: grid; gap: 16px; min-height: 100vh; align-content: center; }
.admin-login-card img { width: 230px; background: var(--white); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow); }
.admin-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar { background: var(--primary-dark); color: var(--white); padding: 22px; display: grid; align-content: start; gap: 8px; position: sticky; top: 0; height: 100vh; overflow: auto; }
.admin-sidebar img { width: 190px; background: var(--white); border-radius: var(--radius); padding: 10px; margin-bottom: 12px; }
.admin-sidebar button { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: var(--white); text-align: left; border-radius: var(--radius); padding: 11px 12px; font-weight: 800; cursor: pointer; }
.admin-sidebar button.is-active { background: var(--accent); color: var(--primary-dark); }
.admin-main { padding: 32px; }
.admin-view { display: none; }
.admin-view.is-active { display: grid; gap: 18px; }
.admin-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.admin-kpi, .admin-form, .admin-list, .admin-main textarea, .admin-main .contacts-table { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 34px rgba(3, 40, 50, .06); }
.admin-kpi strong { display: block; font-size: 30px; color: var(--primary); }
.admin-two { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 18px; align-items: start; }
.admin-list { display: grid; gap: 8px; }
.admin-list button { border: 1px solid var(--line); background: var(--soft); color: var(--primary); border-radius: var(--radius); padding: 10px; font-weight: 800; text-align: left; cursor: pointer; }
.admin-form { display: grid; gap: 14px; }
.admin-form .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.admin-main textarea { width: 100%; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.lead-actions { display: flex; flex-wrap: wrap; gap: 6px; }
.lead-actions button, .lead-actions a { border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px; font-size: 12px; font-weight: 800; background: var(--soft); color: var(--primary); }
.muted { color: var(--muted); font-size: 14px; }
@media (max-width: 1080px) { .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .admin-layout { grid-template-columns: 1fr; } .admin-sidebar { position: static; height: auto; } .admin-kpis, .admin-two { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .help-grid, .faq-grid, .contact-preview { grid-template-columns: 1fr; } .admin-main { padding: 18px; } .admin-form .form-grid { grid-template-columns: 1fr; } }


.security-note { margin-top: 22px; color: var(--primary); background: rgba(168, 215, 42, .12); border: 1px solid rgba(168, 215, 42, .38); border-radius: var(--radius); padding: 16px; font-weight: 700; }
.doc-card summary { cursor: pointer; color: var(--primary-dark); font-size: 18px; font-weight: 900; }
.doc-card summary::-webkit-details-marker { color: var(--accent-dark); }
.team-card.is-highlighted { border-color: rgba(168, 215, 42, .65); }
.team-card .profile-link, .team-card .social-link { color: var(--primary); font-weight: 900; }
.admin-title-row, .admin-tools { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; }
.admin-tools { justify-content: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.admin-tools input { max-width: 420px; }
.admin-card, .admin-section-card, .repeat-list, .user-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: 0 10px 34px rgba(3, 40, 50, .06); }
.admin-dashboard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-form textarea { font-family: inherit; min-height: 110px; }
.repeat-list { display: grid; gap: 10px; }
.repeat-item { display: grid; grid-template-columns: 1fr auto auto auto; gap: 8px; align-items: center; }
.link-item { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1fr) auto auto auto; gap: 8px; align-items: center; }
.repeat-item textarea { min-height: 70px; }
.mini-button, .admin-tools button, .repeat-list button { border: 1px solid var(--line); border-radius: var(--radius); color: var(--primary); background: var(--soft); padding: 9px 11px; font-weight: 900; cursor: pointer; }
.form-section-title { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--primary-dark); }
.image-preview { width: 112px; height: 112px; border-radius: var(--radius); border: 1px solid var(--line); object-fit: cover; background: var(--soft); }
.status-badge { display: inline-flex; border-radius: 999px; padding: 4px 8px; background: rgba(168, 215, 42, .12); color: var(--primary); font-size: 12px; font-weight: 900; }
.site-nav .nav-cta { border: 0; cursor: pointer; font-family: inherit; }
.site-footer { padding-bottom: 112px; }
.footer-grid { gap: 34px; align-items: start; }
.footer-brand p, .site-footer p { line-height: 1.65; }
.site-footer a { display: block; margin: 8px 0; line-height: 1.35; }
.footer-areas a { font-size: 14px; }
.site-footer h2 { margin-bottom: 14px; }
.float-actions { z-index: 80; }
.toggle-panel { display: grid; gap: 16px; }
.toggle-group { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: 0 10px 34px rgba(3, 40, 50, .05); }
.toggle-group h4 { margin: 0 0 12px; color: var(--primary-dark); font-size: 16px; }
.toggle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.toggle-card { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; background: var(--soft); cursor: pointer; }
.toggle-card input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-card small { display: block; color: var(--muted); line-height: 1.35; margin-top: 2px; }
.toggle-visual { width: 42px; height: 24px; border-radius: 999px; background: #d9e3e6; position: relative; transition: background .2s ease; }
.toggle-visual::after { content: ""; width: 18px; height: 18px; border-radius: 999px; background: var(--white); position: absolute; top: 3px; left: 3px; box-shadow: 0 2px 8px rgba(3, 40, 50, .2); transition: transform .2s ease; }
.toggle-card input:checked + .toggle-visual { background: var(--accent); }
.toggle-card input:checked + .toggle-visual::after { transform: translateX(18px); }
.professional-list-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: stretch; }
.professional-list-item[draggable="true"] { cursor: grab; }
.order-actions { display: grid; gap: 6px; }
.order-actions button { width: 38px; text-align: center; }
.alert-tabs, .article-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; margin-bottom: 16px; }
.alert-tabs button, .alert-card button, .category-pills button { border: 1px solid var(--line); background: var(--white); color: var(--primary); border-radius: 999px; padding: 9px 12px; font-weight: 900; cursor: pointer; }
.alert-tabs button.is-active, .category-pills button.is-active { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }
.alert-list { display: grid; gap: 12px; }
.alert-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: var(--soft); }
.alert-card h4 { margin: 8px 0 6px; font-size: 17px; }
.alert-card small { color: var(--muted); margin-left: 8px; }
.article-support { margin-top: 12px; font-size: 16px; color: rgba(255,255,255,.82); }
.article-toolbar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: 0 10px 34px rgba(3, 40, 50, .06); }
.article-toolbar label { flex: 1 1 210px; color: var(--primary-dark); font-weight: 900; }
.article-toolbar input, .article-toolbar select { margin-top: 6px; }
.category-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.category-pills button span { opacity: .72; }
.article-card { display: grid; align-content: start; gap: 10px; }
.article-cover { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); background: var(--soft); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.article-meta span { display: inline-flex; border-radius: 999px; padding: 5px 9px; background: rgba(168, 215, 42, .14); color: var(--primary); font-size: 12px; font-weight: 900; }
.article-byline { color: var(--muted); font-size: 14px; font-weight: 800; }
.article-read summary { display: inline-flex; width: fit-content; border-radius: var(--radius); background: var(--primary); color: var(--white); padding: 10px 13px; font-weight: 900; cursor: pointer; list-style: none; }
.article-read summary::-webkit-details-marker { display: none; }
.article-read p { margin-top: 12px; }
.empty-state { grid-column: 1 / -1; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: 0 10px 34px rgba(3, 40, 50, .06); }
@media (max-width: 900px) { .admin-dashboard-grid, .repeat-item, .link-item, .toggle-grid { grid-template-columns: 1fr; } .site-footer { padding-bottom: 138px; } .footer-grid { gap: 28px; } }
