:root {
  --bg: #f4f7e9;
  --surface: #ffffff;
  --surface-muted: #edf3cd;
  --text: #0e0f0a;
  --text-muted: #505348;
  --accent: #dcf730;
  --accent-strong: #c8e91f;
  --accent-soft: rgba(220, 247, 48, 0.18);
  --border: rgba(14, 15, 10, 0.12);
  --border-strong: rgba(14, 15, 10, 0.2);
  --shadow: 0 20px 60px rgba(38, 49, 10, 0.1);
  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(220, 247, 48, 0.22), transparent 26%),
    linear-gradient(180deg, #fbfdf4 0%, #f1f5e2 100%);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(220, 247, 48, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.96);
  border-bottom-color: rgba(220, 247, 48, 0.24);
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.32);
}

.nav-shell,
.footer-shell,
.trust-items,
.solution-band,
.cta-panel,
.offer-shell,
.contact-grid,
.hero-grid,
.split-grid {
  display: grid;
  gap: 1.5rem;
}

.nav-shell {
  align-items: center;
  grid-template-columns: auto 1fr auto;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: auto;
  height: 2.6rem;
}

.desktop-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.desktop-nav a:hover,
.footer-links a:hover,
.mobile-menu a:hover {
  color: var(--accent);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(220, 247, 48, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  background: rgba(10, 10, 10, 0.96);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.86);
}

.mobile-menu.is-open {
  display: grid;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #111111;
  box-shadow: inset 0 0 0 1px rgba(14, 15, 10, 0.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 247, 48, 0.22);
  color: #ffffff;
}

.button-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #6b751a;
  font-weight: 800;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.hero-text,
.contact-copy,
.solution-band p,
.cta-panel p,
.offer-copy p,
.info-card p,
.process-card p,
.service-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.hero-points,
.audit-list,
.why-us ul,
.panel-card ul,
.service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}

.hero-points li,
.audit-list li,
.why-us li,
.panel-card li,
.service-card li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-points li::before,
.audit-list li::before,
.why-us li::before,
.panel-card li::before,
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.info-card,
.service-card,
.process-card,
.contact-form,
.why-us,
.cta-panel,
.solution-band,
.offer-shell,
.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel-card,
.info-card,
.service-card,
.process-card,
.why-us {
  padding: 1.5rem;
}

.panel-dark {
  background: #111111;
  color: #ffffff;
  border-color: rgba(220, 247, 48, 0.18);
}

.panel-dark .panel-label,
.panel-dark li {
  color: rgba(255, 255, 255, 0.8);
}

.panel-dark li::before {
  background: #ffffff;
}

.panel-label {
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
}

.panel-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-image-card {
  padding: 0;
  overflow: hidden;
}

.hero-panel-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-image-copy {
  padding: 1.2rem 1.3rem 1.35rem;
}

.hero-banner {
  position: relative;
  margin-top: 2rem;
  min-height: 28rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(220, 247, 48, 0.16);
  box-shadow: 0 24px 60px rgba(14, 15, 10, 0.14);
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 8, 0.88) 0%, rgba(11, 13, 8, 0.56) 42%, rgba(11, 13, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(220, 247, 48, 0.08), transparent 45%);
}

.hero-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
  padding: 2rem;
  color: #ffffff;
}

.hero-banner-content h2 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-banner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-metric {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(220, 247, 48, 0.16);
  backdrop-filter: blur(10px);
}

.hero-metric strong {
  font-size: 0.95rem;
  color: var(--accent);
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 1rem 0;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(220, 247, 48, 0.16);
}

.trust-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
}

.section-split .split-grid {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.problem-stack,
.services-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.problem-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-note {
  margin: 0.4rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.solution-band,
.offer-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 2rem;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 56rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.portfolio-card-large {
  grid-column: span 2;
}

.portfolio-card-large img {
  aspect-ratio: 16 / 10;
}

.portfolio-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}

.portfolio-card strong {
  font-size: 1rem;
}

.portfolio-card span {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.service-card {
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5.5rem;
  height: 0.2rem;
  background: var(--accent);
}

.service-index {
  font-size: 0.85rem;
  font-weight: 800;
  color: #6b751a;
  letter-spacing: 0.12em;
}

.service-focus {
  margin: 0;
  font-weight: 700;
}

.revenue-banner {
  margin-top: 1.5rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #111111 0%, #20240c 100%);
  color: #f8f8f8;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  border: 1px solid rgba(220, 247, 48, 0.28);
}

.revenue-banner strong {
  color: var(--accent);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(220, 247, 48, 0.1), rgba(220, 247, 48, 0.45), rgba(220, 247, 48, 0.1));
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111111;
  font-weight: 800;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
}

.faq-item.is-open {
  border-color: rgba(220, 247, 48, 0.45);
}

.faq-item.is-open .faq-answer {
  max-height: 12rem;
  padding: 0 1.5rem;
}

.faq-item.is-open .faq-icon {
  background: var(--accent);
}

.offer-copy {
  display: grid;
  align-content: start;
}

.offer-result {
  margin: 1rem 0 0;
  font-weight: 800;
  color: var(--text);
}

.why-us {
  align-self: stretch;
}

.cta-panel {
  padding: 3rem;
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.contact-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field-full,
.form-actions {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(220, 247, 48, 0.72);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
}

.site-footer {
  padding: 2rem 0 2rem;
  background: #0b0d08;
  color: #f6f8ef;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid rgba(220, 247, 48, 0.12);
}

.footer-cta h2 {
  margin-bottom: 0.8rem;
  max-width: 14ch;
}

.footer-copy {
  max-width: 42rem;
  color: rgba(246, 248, 239, 0.72);
  font-size: 1rem;
}

.footer-copy-small {
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: #111111;
  color: var(--accent);
  border: 1px solid rgba(220, 247, 48, 0.25);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.28);
  font-weight: 800;
}

.floating-whatsapp:hover {
  background: #1b1e0c;
}

.whatsapp-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.footer-shell {
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.7fr));
  align-items: start;
  gap: 2rem;
  padding: 2rem 0 1.2rem;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  height: 2.8rem;
}

.footer-column {
  display: grid;
  gap: 0.65rem;
}

.footer-column h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.footer-column a {
  color: rgba(246, 248, 239, 0.72);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-links {
  display: inline-flex;
  gap: 1.25rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(220, 247, 48, 0.08);
  color: rgba(246, 248, 239, 0.56);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-split .split-grid,
  .solution-band,
  .offer-shell,
  .contact-grid,
  .services-grid,
  .portfolio-grid,
  .problem-stack,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }

  .portfolio-card-large {
    grid-column: span 1;
  }

  .hero-banner-metrics {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-actions .button {
    display: none;
  }

  h1 {
    max-width: 14ch;
  }

  .footer-cta,
  .footer-shell,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-banner {
    min-height: 24rem;
    margin-top: 1.25rem;
  }

  .hero-banner-image {
    min-height: 24rem;
  }

  .hero-banner-content {
    padding: 1.25rem;
  }

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

  .cta-panel,
  .solution-band,
  .offer-shell {
    padding: 1.5rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-shell {
    justify-items: start;
  }

  .floating-whatsapp {
    right: 0.75rem;
    left: auto;
    bottom: 0.75rem;
    width: 3.75rem;
    min-height: 3.75rem;
    height: 3.75rem;
    padding: 0;
    border-radius: 999px;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .whatsapp-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.hidden {
  display: none !important;
}

.crm-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(220, 247, 48, 0.16), transparent 24%),
    linear-gradient(180deg, #0b0d08 0%, #101309 100%);
  color: #f5f7ef;
}

.crm-shell {
  width: min(calc(100% - 2rem), 1320px);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.crm-login {
  min-height: calc(100vh - 4rem);
  display: grid;
  place-items: center;
  gap: 1.5rem;
}

.crm-brand {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.crm-brand .brand-logo {
  height: 3.2rem;
}

.crm-card,
.crm-stat-card,
.crm-list-panel,
.crm-detail-panel,
.crm-meta-card,
.crm-lead-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(220, 247, 48, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.crm-card {
  width: min(100%, 30rem);
  padding: 2rem;
}

.crm-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.crm-copy,
.crm-note,
.crm-help,
.crm-section-header p,
.crm-empty-state p,
.crm-empty-list p {
  color: rgba(245, 247, 239, 0.68);
}

.crm-help {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.crm-form,
.crm-detail {
  display: grid;
  gap: 1rem;
}

.crm-form label,
.crm-detail label {
  display: grid;
  gap: 0.45rem;
}

.crm-form span,
.crm-detail span,
.crm-meta-card span {
  font-size: 0.88rem;
  font-weight: 700;
}

.crm-form input,
.crm-detail input,
.crm-detail select,
.crm-detail textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(220, 247, 48, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.crm-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.crm-topbar-actions,
.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.crm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.crm-stat-card {
  padding: 1.2rem 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.crm-stat-card span {
  color: rgba(245, 247, 239, 0.62);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crm-stat-card strong {
  font-size: 2rem;
  color: var(--accent);
}

.crm-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
}

.crm-list-panel,
.crm-detail-panel {
  padding: 1.1rem;
}

.crm-section-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crm-section-header h2,
.crm-empty-state h2,
.crm-empty-list h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.crm-lead-list {
  display: grid;
  gap: 0.75rem;
  max-height: 70vh;
  overflow: auto;
}

.crm-lead-item {
  width: 100%;
  padding: 1rem;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.crm-lead-item.is-active {
  border-color: rgba(220, 247, 48, 0.5);
  background: rgba(220, 247, 48, 0.08);
}

.crm-lead-top,
.crm-lead-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.crm-lead-item p {
  margin: 0.45rem 0 0.75rem;
  color: rgba(245, 247, 239, 0.66);
}

.crm-lead-bottom {
  color: rgba(245, 247, 239, 0.58);
  font-size: 0.85rem;
}

.crm-badge,
.crm-list-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-new {
  background: rgba(220, 247, 48, 0.15);
  color: var(--accent);
}

.status-qualified {
  background: rgba(78, 201, 176, 0.16);
  color: #83f0d6;
}

.status-proposal {
  background: rgba(255, 192, 72, 0.16);
  color: #ffd37a;
}

.status-won {
  background: rgba(96, 216, 117, 0.16);
  color: #8ff39d;
}

.status-lost {
  background: rgba(255, 110, 110, 0.16);
  color: #ff9b9b;
}

.crm-meta-grid,
.crm-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.crm-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0;
}

.crm-meta-card {
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}

.crm-meta-card strong,
.crm-meta-card a {
  color: #ffffff;
  font-weight: 700;
}

.crm-empty-state,
.crm-empty-list {
  min-height: 18rem;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.5rem;
}

@media (max-width: 980px) {
  .crm-stats,
  .crm-layout,
  .crm-meta-grid,
  .crm-field-grid {
    grid-template-columns: 1fr;
  }

  .crm-topbar {
    align-items: start;
    flex-direction: column;
  }
}
