:root {
  --cyan: #08c7ad;
  --cyan-light: #4cf8e5;
  --black: #050606;
  --charcoal: #111719;
  --muted: #697579;
  --line: #d9e4e3;
  --light: #f5f8f8;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(5, 6, 6, 0.88);
  border-bottom: 1px solid rgba(8, 199, 173, 0.22);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 218px;
  min-height: 54px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(8, 199, 173, 0.18);
}

.brand-logo img {
  width: 190px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover {
  color: var(--cyan-light);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--black) !important;
  background: var(--cyan);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 78% 20%, rgba(8, 199, 173, 0.28), transparent 32%),
    linear-gradient(135deg, #030404 0%, #101819 56%, #04100f 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.6;
}

.hero-glow-one {
  right: 10%;
  top: 18%;
  width: 160px;
  height: 160px;
  background: rgba(8, 199, 173, 0.28);
}

.hero-glow-two {
  left: 8%;
  bottom: 12%;
  width: 90px;
  height: 90px;
  background: rgba(76, 248, 229, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #008f7f;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--cyan);
  box-shadow: 0 0 34px rgba(8, 199, 173, 0.28);
}

.button-primary:hover {
  background: var(--cyan-light);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.button.large {
  min-width: 240px;
}

.hero-metrics {
  margin-top: 34px;
}

.hero-metrics div {
  min-width: 132px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.hero-metrics strong {
  display: block;
  color: var(--cyan-light);
  font-size: 23px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(76, 248, 229, 0.2);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-top .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.panel-top .dot:first-child {
  background: var(--cyan);
}

.panel-top p {
  margin: 0 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 20px;
}

.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(4, 8, 8, 0.78);
  box-shadow: inset 0 0 0 1px rgba(8, 199, 173, 0.05);
}

.main-schedule {
  grid-row: span 2;
  padding: 18px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.card-header strong {
  color: var(--cyan-light);
  font-size: 28px;
}

.appointment {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
}

.appointment > span {
  color: var(--cyan-light);
  font-size: 14px;
  font-weight: 900;
}

.appointment strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.appointment small,
.kpi-card small {
  color: rgba(255, 255, 255, 0.55);
}

.chat-card {
  padding: 16px;
}

.whatsapp-chip {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--cyan);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.message {
  width: fit-content;
  max-width: 92%;
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  line-height: 1.35;
}

.message.outgoing {
  margin-left: auto;
  color: #001c18;
  background: var(--cyan);
}

.message.success {
  background: #bffcf3;
}

.kpi-card {
  padding: 18px;
}

.kpi-card span,
.metric-box span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.kpi-card strong,
.metric-box strong {
  display: block;
  margin: 9px 0 4px;
  color: var(--cyan-light);
  font-size: 34px;
  line-height: 1;
}

.accent {
  background: linear-gradient(145deg, rgba(8, 199, 173, 0.25), rgba(4, 8, 8, 0.82));
}

section {
  padding: 88px 0;
}

.pain-section,
.flow-section,
.faq-section {
  background: var(--light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.split p,
.project-card p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pain-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.pain-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.pain-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(4, 8, 8, 0.05);
}

.solution-item > span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(8, 199, 173, 0.12);
}

.solution-item p {
  margin: 0;
  color: var(--muted);
}

.dashboard-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(8, 199, 173, 0.22), transparent 28%),
    var(--black);
}

.dashboard-section h2 {
  color: var(--white);
}

.dashboard-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-button {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active {
  color: var(--black);
  background: var(--cyan);
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(8, 199, 173, 0.22);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.showcase-sidebar {
  padding: 24px;
  background: rgba(0, 0, 0, 0.35);
}

.sidebar-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--cyan-light);
  border: 1px solid rgba(8, 199, 173, 0.5);
  border-radius: 50%;
  font-weight: 900;
}

.showcase-sidebar a {
  display: block;
  margin-bottom: 10px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.showcase-sidebar a.active,
.showcase-sidebar a:hover {
  color: var(--black);
  background: var(--cyan);
}

.showcase-content {
  padding: 28px;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.showcase-header span,
.showcase-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.showcase-header h3 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: 28px;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.metric-box {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-box small {
  color: rgba(255, 255, 255, 0.54);
}

.dashboard-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.3fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.table-head {
  border-top: 0;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.confirmed {
  color: #00231f;
  background: var(--cyan-light);
}

.status.pending {
  color: #7a4c00;
  background: #ffe7af;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 40px;
  color: var(--black);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-section {
  color: var(--white);
  background: var(--black);
}

.project-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(8, 199, 173, 0.22);
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(8, 199, 173, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.project-card h2,
.contact-card h2 {
  color: var(--white);
}

.project-card p,
.contact-card p {
  color: rgba(255, 255, 255, 0.68);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.included-grid div {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

summary {
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  padding: 70px 0;
  background: var(--white);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 30%, rgba(8, 199, 173, 0.24), transparent 30%),
    var(--black);
  box-shadow: var(--shadow);
}

.contact-card > div {
  max-width: 720px;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: rgba(5, 6, 6, 0.96);
    border: 1px solid rgba(8, 199, 173, 0.24);
    border-radius: 22px;
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .project-card {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .dashboard-cards,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dashboard-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-sidebar {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 8px;
  }

  .sidebar-logo {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
  }

  .showcase-sidebar a {
    flex: 0 0 auto;
    margin: 0;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 180px;
    min-height: 48px;
  }

  .brand-logo img {
    width: 155px;
  }

  .hero {
    padding: 64px 0;
  }

  .dashboard-preview,
  .pain-grid,
  .dashboard-cards,
  .flow,
  .faq-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .main-schedule {
    grid-row: auto;
  }

  .showcase-content {
    padding: 18px;
  }

  .showcase-header {
    flex-direction: column;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-head {
    display: none;
  }

  section {
    padding: 64px 0;
  }

  .footer-content {
    flex-direction: column;
  }
}

/* Clean/light visual pass requested for Maurus Barber */
body {
  background: #f7faf9;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dce7e6;
  box-shadow: 0 12px 34px rgba(9, 32, 34, 0.08);
}

.brand-logo {
  width: 288px;
  min-height: 56px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-logo img {
  width: 278px;
}

.nav {
  color: #253033;
}

.nav a:hover {
  color: #007e72;
}

.nav-cta {
  color: var(--black) !important;
  box-shadow: 0 10px 24px rgba(8, 199, 173, 0.18);
}

.menu-toggle {
  background: #f3f7f7;
  border-color: #dce7e6;
}

.menu-toggle span {
  background: #111719;
}

.hero {
  color: var(--black);
  background:
    radial-gradient(circle at 82% 12%, rgba(8, 199, 173, 0.2), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf9 100%);
}

.hero::before {
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(8, 199, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 199, 173, 0.08) 1px, transparent 1px);
}

.hero-glow {
  opacity: 0.24;
}

.hero-text {
  color: #536265;
}

.button-ghost {
  color: var(--black);
  background: #ffffff;
  border-color: #cfe0de;
}

.hero-metrics div,
.hero-panel,
.preview-card {
  background: #ffffff;
  border-color: #dce7e6;
  box-shadow: 0 18px 50px rgba(9, 32, 34, 0.09);
}

.hero-metrics strong {
  color: #008f82;
}

.hero-metrics span,
.panel-top p,
.appointment small,
.kpi-card small,
.kpi-card span,
.metric-box span {
  color: #687579;
}

.panel-top {
  background: #f4f7f7;
  border-bottom-color: #dce7e6;
}

.panel-top .dot {
  background: #c7d6d4;
}

.panel-top .dot:first-child {
  background: var(--cyan);
}

.hero-panel {
  overflow: hidden;
}

.hero-panel .dashboard-preview {
  display: none;
}

.dashboard-shot {
  width: 100%;
  height: auto;
  display: block;
}

.hero-dashboard-shot {
  border-top: 1px solid #dce7e6;
}

.pain-section,
.flow-section,
.faq-section,
.project-section,
.dashboard-section,
.contact-section {
  background: #f7faf9;
}

.dashboard-section {
  color: var(--charcoal);
}

.dashboard-section h2,
.project-card h2,
.contact-card h2 {
  color: var(--black);
}

.dashboard-section .section-heading p:not(.eyebrow),
.project-card p,
.contact-card p {
  color: var(--muted);
}

.dashboard-print-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin: 0 0 34px;
}

.dashboard-print-card {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.1);
}

.dashboard-print-card.print-large {
  grid-row: span 2;
}

.dashboard-print-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: top left;
}

.dashboard-print-card figcaption {
  padding: 16px 18px 18px;
  color: #536265;
  border-top: 1px solid #e7eeee;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.tab-button {
  color: #536265;
  background: #ffffff;
  border-color: #dce7e6;
}

.tab-button.active {
  color: #031617;
  background: var(--cyan);
}

.dashboard-showcase {
  color: var(--charcoal);
  background: #ffffff;
  border-color: #dce7e6;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.1);
}

.showcase-sidebar {
  background: #f3f7f7;
  border-right: 1px solid #dce7e6;
}

.showcase-sidebar a {
  color: #536265;
}

.sidebar-logo {
  color: #008f82;
  background: #ffffff;
}

.showcase-header h3,
.metric-box strong {
  color: var(--black);
}

.showcase-header span,
.showcase-header p,
.metric-box small,
.table-row {
  color: #627073;
}

.metric-box,
.dashboard-table {
  background: #f8fbfb;
  border-color: #dce7e6;
}

.table-row {
  border-top-color: #dce7e6;
}

.table-head {
  color: #6b7476;
  background: #eef5f4;
}

.project-card,
.contact-card {
  color: var(--charcoal);
  background:
    radial-gradient(circle at 88% 14%, rgba(8, 199, 173, 0.18), transparent 28%),
    #ffffff;
  border: 1px solid #dce7e6;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.1);
}

.included-grid div {
  color: #253033;
  background: #f8fbfb;
  border-color: #dce7e6;
}

.footer {
  color: #627073;
  background: #ffffff;
  border-top: 1px solid #dce7e6;
}

@media (max-width: 980px) {
  .nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: #dce7e6;
    box-shadow: 0 18px 50px rgba(9, 32, 34, 0.12);
  }
}

@media (max-width: 820px) {
  .dashboard-print-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-print-card.print-large {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    width: 218px;
  }

  .brand-logo img {
    width: 210px;
  }

  .dashboard-print-card img {
    min-height: 210px;
  }
}

/* Fixes: dashboard side buttons + uncropped dashboard prints */
.showcase-nav-button {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px;
  color: #536265;
  background: transparent;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.showcase-nav-button.active,
.showcase-nav-button:hover {
  color: var(--black);
  background: var(--cyan);
}

.dashboard-print-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.dashboard-print-card,
.dashboard-print-card.print-large {
  grid-row: auto;
}

.dashboard-print-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  background: #f7faf9;
}

.hero-dashboard-shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 980px) {
  .showcase-nav-button {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    white-space: nowrap;
  }
}

/* Simplified landing page flow: presentation > WhatsApp > booking > dashboard */
.compact-hero {
  padding: 76px 0 66px;
}

.clean-phone-panel {
  max-width: 480px;
  justify-self: end;
}

.whatsapp-section,
.booking-section {
  background: #ffffff;
}

.whatsapp-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.phone-mock {
  overflow: hidden;
  background: #f4f8f8;
  border: 1px solid #dce7e6;
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.12);
}

.mini-phone {
  margin: 22px;
}

.large-phone {
  max-width: 520px;
  justify-self: end;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #ffffff;
  background: #0a0a0a;
}

.phone-brand-logo {
  width: min(220px, 68%);
  padding: 5px 12px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(8, 199, 173, 0.14);
}

.phone-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.phone-header strong,
.phone-header span {
  display: block;
}

.phone-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.phone-header-status {
  flex: 0 0 auto;
  text-align: right;
}

.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 22px;
}

.bubble {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  color: #243033;
  background: #ffffff;
  border: 1px solid #e0eaea;
  font-size: 14px;
  line-height: 1.45;
}

.bubble.client {
  align-self: flex-end;
  color: #031617;
  background: #ddfbf7;
  border-color: #bdf4ec;
}

.bubble.bot {
  align-self: flex-start;
}

.bubble.success {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 86%;
}

.quick-options span {
  display: inline-flex;
  padding: 8px 12px;
  color: #00776b;
  background: #e4fbf8;
  border: 1px solid #bdf4ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.booking-card {
  padding: clamp(28px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.1);
}

.booking-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.booking-summary div {
  padding: 18px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 18px;
}

.booking-summary span {
  display: block;
  margin-bottom: 7px;
  color: #687579;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-summary strong {
  color: var(--black);
  font-size: 17px;
}

.booking-steps {
  display: grid;
  gap: 14px;
}

.booking-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 24px;
}

.booking-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.booking-steps h3 {
  margin-bottom: 4px;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
}

.simple-dashboard-section {
  background: #f7faf9;
}

.compact-included {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 980px) {
  .whatsapp-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .clean-phone-panel,
  .large-phone {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .booking-summary,
  .compact-included {
    grid-template-columns: 1fr;
  }

  .mini-phone {
    margin: 14px;
  }

  .phone-chat {
    padding: 16px;
  }
}

/* Cleaner version: one WhatsApp example + simple flow summary */
.hero-simple-card {
  justify-self: end;
  width: min(100%, 500px);
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dce7e6;
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(9, 32, 34, 0.1);
}

.hero-simple-card h2 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.02;
}

.simple-card-tag {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  color: #031617;
  background: #ddfbf7;
  border: 1px solid #bdf4ec;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-flow {
  display: grid;
  gap: 12px;
}

.simple-flow div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 20px;
}

.simple-flow span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.simple-flow strong,
.simple-flow small {
  display: block;
  min-width: 0;
}

.simple-flow strong {
  color: var(--black);
  font-size: 16px;
}

.simple-flow small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: stretch;
}

.booking-flow-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 30px;
}

.booking-flow-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.booking-flow-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-flow-card li {
  position: relative;
  padding: 16px 16px 16px 42px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.5;
}

.booking-flow-card li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(8, 199, 173, 0.1);
}

.booking-flow-card strong {
  color: var(--black);
}

@media (max-width: 980px) {
  .hero-simple-card {
    justify-self: stretch;
    width: 100%;
  }

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

/* Dashboard preview built in real HTML/CSS instead of low-resolution screenshots */
.coded-dashboard {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(9, 32, 34, 0.12);
}

.coded-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  color: #ffffff;
  background: #050606;
}

.coded-app-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coded-app-logo {
  width: min(250px, 42vw);
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(8, 199, 173, 0.14);
}

.coded-app-brand > span,
.coded-sidebar-logo {
  display: grid;
  place-items: center;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 950;
}

.coded-app-brand > span {
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.coded-app-brand strong,
.coded-app-brand small {
  display: block;
}

.coded-app-brand strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.coded-app-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.coded-system-status {
  padding: 9px 12px;
  color: #031617;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.coded-dashboard-body {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  min-height: 640px;
}

.coded-dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  background: #f2f7f7;
  border-right: 1px solid #dce7e6;
}

.coded-sidebar-logo {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  background: #ffffff;
  border: 1px solid rgba(8, 199, 173, 0.42);
  color: #008f82;
}

.coded-side-item {
  display: block;
  width: 100%;
  padding: 13px 16px;
  color: #536265;
  background: transparent;
  border: 0;
  border-radius: 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.coded-side-item:hover,
.coded-side-item:focus-visible {
  color: #031617;
  background: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.coded-side-item.active {
  color: #031617;
  background: var(--cyan);
}

.coded-dashboard-content {
  min-width: 0;
  padding: clamp(20px, 3.2vw, 36px);
}

.coded-dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.coded-dashboard-heading p {
  margin: 0 0 8px;
  color: #008f82;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coded-dashboard-heading h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.coded-dashboard-heading span {
  display: block;
  max-width: 650px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.coded-dashboard-heading > strong {
  flex: 0 0 auto;
  padding: 11px 14px;
  color: #031617;
  background: #ddfbf7;
  border: 1px solid #bdf4ec;
  border-radius: 999px;
  font-size: 13px;
}

.coded-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.coded-kpi {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(9, 32, 34, 0.07);
}

.coded-kpi span,
.coded-kpi small {
  display: block;
  color: #687579;
  font-weight: 800;
}

.coded-kpi span {
  margin-bottom: 10px;
  font-size: 13px;
}

.coded-kpi strong {
  display: block;
  color: var(--black);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.coded-kpi small {
  margin-top: 10px;
  padding: 7px 10px;
  color: #008f82;
  background: #ddfbf7;
  border-radius: 999px;
  font-size: 12px;
}

.coded-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.coded-calendar-card,
.coded-mini-panel {
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(9, 32, 34, 0.08);
}

.coded-calendar-card {
  padding: 22px;
}

.coded-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.coded-card-head strong {
  color: var(--black);
  font-size: 18px;
}

.coded-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.coded-calendar-scroll {
  overflow-x: auto;
  padding-bottom: 2px;
}

.coded-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(64px, 1fr));
  gap: 6px;
  min-width: 560px;
}

.coded-month-dow {
  padding: 7px 0;
  color: #7b878a;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.coded-day {
  min-height: 78px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 14px;
}

.coded-day strong {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
  font-size: 14px;
}

.coded-day span {
  display: block;
  overflow: hidden;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coded-day.busy span,
.coded-day.free span,
.coded-day.featured span {
  color: #008f82;
  background: #ddfbf7;
}

.coded-day.closed {
  background: #f4f6f6;
}

.coded-day.closed span {
  color: #7b878a;
  background: #e7eeee;
}

.coded-day.featured {
  background: #ddfbf7;
  border-color: #9beee3;
  box-shadow: inset 0 0 0 1px rgba(8, 199, 173, 0.1);
}

.coded-panel-column {
  display: grid;
  gap: 16px;
}

.coded-mini-panel {
  padding: 20px;
}

.coded-appointment {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-left: 4px solid var(--cyan);
  border-radius: 18px;
}

.coded-appointment + .coded-appointment {
  margin-top: 10px;
}

.coded-appointment time {
  color: #008f82;
  font-size: 13px;
  font-weight: 950;
}

.coded-appointment strong,
.coded-appointment span {
  display: block;
}

.coded-appointment strong {
  color: var(--black);
  font-size: 15px;
}

.coded-appointment span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.coded-appointment.free {
  border-left-color: #111719;
}

.coded-service-list {
  display: grid;
  gap: 10px;
}

.coded-service-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 16px;
}

.coded-service-list span {
  color: var(--black);
  font-weight: 900;
}

.coded-service-list strong {
  flex: 0 0 auto;
  color: #008f82;
  font-size: 13px;
}

.coded-list-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(9, 32, 34, 0.08);
}

.coded-row-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 18px;
}

.coded-row-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  overflow: hidden;
  text-align: center;
}

.coded-row-card strong,
.coded-row-card > div > span {
  display: block;
}

.coded-row-card strong {
  color: var(--black);
  font-size: 15px;
}

.coded-row-card > div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.coded-row-value {
  color: #008f82;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.coded-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #008f82;
  background: #ddfbf7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.coded-table-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(9, 32, 34, 0.08);
}

.coded-table-card .coded-card-head {
  margin: 0;
  padding: 20px 22px;
  border-bottom: 1px solid #dce7e6;
}

.coded-data-table {
  display: grid;
}

.coded-table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr 0.9fr;
  gap: 12px;
  align-items: center;
  padding: 15px 22px;
  color: #536265;
  border-top: 1px solid #eef3f3;
  font-size: 14px;
  font-weight: 700;
}

.coded-table-row:first-child {
  border-top: 0;
}

.coded-table-row.head {
  color: #7b878a;
  background: #f7faf9;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coded-table-row strong {
  color: var(--black);
}

.coded-whatsapp-preview {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #f4f8f8;
  border: 1px solid #dce7e6;
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(9, 32, 34, 0.08);
}

.coded-message-bubble {
  width: fit-content;
  max-width: 86%;
  padding: 11px 13px;
  color: #243033;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.coded-message-bubble.out {
  justify-self: end;
  background: #ddfbf7;
  border-color: #bdf4ec;
}

.coded-message-bubble.dark {
  color: #ffffff;
  background: #050606;
  border-color: #050606;
}

.coded-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.coded-report-card {
  min-height: 150px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dce7e6;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(9, 32, 34, 0.07);
}

.coded-report-card span {
  display: block;
  color: #008f82;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coded-report-card strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--black);
  font-size: 34px;
  line-height: 1;
}

.coded-report-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.coded-admin-primary {
  align-self: start;
}

.coded-admin-action {
  display: inline-flex;
  padding: 8px 11px;
  color: #031617 !important;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 950 !important;
  white-space: nowrap;
}

.coded-admin-form {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 14px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 18px;
}

.coded-admin-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e7eeee;
  border-radius: 14px;
}

.coded-admin-form label span {
  color: #687579;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coded-admin-form label strong {
  overflow: hidden;
  color: var(--black);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coded-hours-list,
.coded-brand-settings {
  display: grid;
  gap: 10px;
}

.coded-hours-list div,
.coded-brand-settings div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: #f7faf9;
  border: 1px solid #dce7e6;
  border-radius: 16px;
}

.coded-hours-list span {
  color: var(--black);
  font-weight: 900;
}

.coded-hours-list strong {
  color: #008f82;
  font-size: 13px;
  white-space: nowrap;
}

.coded-brand-settings div {
  justify-content: flex-start;
}

.coded-brand-settings strong {
  color: var(--black);
  font-size: 14px;
}

.coded-brand-dot,
.coded-brand-logo,
.coded-brand-name {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #031617;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.coded-brand-dot {
  box-shadow:
    inset 0 0 0 7px #ffffff,
    0 0 0 1px rgba(8, 199, 173, 0.45);
}

.coded-brand-logo {
  background: #050606;
  color: var(--cyan);
}

.coded-brand-name {
  background: #ddfbf7;
  color: #008f82;
}

@media (max-width: 1040px) {
  .coded-dashboard-body,
  .coded-dashboard-main {
    grid-template-columns: 1fr;
  }

  .coded-dashboard-sidebar {
    flex-direction: row;
    overflow-x: auto;
    align-items: center;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid #dce7e6;
  }

  .coded-sidebar-logo {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin: 0 4px 0 0;
  }

  .coded-side-item {
    flex: 0 0 auto;
    width: auto;
  }
}

@media (max-width: 680px) {
  .coded-dashboard-top,
  .coded-dashboard-heading,
  .coded-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .coded-kpi-grid {
    grid-template-columns: 1fr;
  }

  .coded-report-grid {
    grid-template-columns: 1fr;
  }

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

  .coded-row-card,
  .coded-table-row {
    grid-template-columns: 1fr;
  }

  .coded-dashboard-content {
    padding: 18px;
  }

  .coded-app-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .coded-app-logo {
    width: min(240px, 100%);
  }

  .phone-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-brand-logo {
    width: min(220px, 100%);
  }

  .phone-header-status {
    text-align: left;
  }

  .coded-calendar-card,
  .coded-mini-panel {
    padding: 16px;
    border-radius: 22px;
  }
}
