:root {
  color-scheme: light;
  --brand-900: #080b0e;
  --brand-700: #12354a;
  --primary-500: #e1261c;
  --primary-600: #b91c1c;
  --accent-500: #2d6f91;
  --surface: #f4f6f8;
  --line: #d9e1e8;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 60;
  border-radius: 0.75rem;
  background: var(--primary-500);
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
}

.app-card {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(8, 11, 14, 0.07);
}

.admin-content-view,
.admin-content-view > * {
  min-width: 0;
}

.admin-table-shell {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.admin-module-table-shell {
  width: auto;
  margin: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.admin-responsive-table {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}

.admin-responsive-table th,
.admin-responsive-table td {
  box-sizing: border-box;
  min-width: 0;
  padding: 1rem !important;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}

.admin-responsive-table th {
  line-height: 1.35;
}

.admin-responsive-table td {
  line-height: 1.5;
}

.admin-responsive-table td > * {
  min-width: 0;
  max-width: 100%;
}

.admin-responsive-table td .flex {
  flex-wrap: wrap;
}

.admin-responsive-table select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.admin-responsive-table .admin-table-actions {
  width: var(--admin-action-width, 10.5rem);
  white-space: nowrap;
}

.admin-responsive-table .admin-table-actions .flex {
  flex-wrap: nowrap;
}

@media (min-width: 640px) {
  .admin-module-table-shell {
    margin: 1.5rem;
  }
}

@media (max-width: 1279px) {
  .admin-table-shell {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .admin-module-table-shell {
    width: auto;
    margin: 1.5rem;
  }

  .admin-module-table-shell .admin-responsive-table tbody {
    padding: 0;
  }

  .admin-responsive-table,
  .admin-responsive-table tbody {
    display: block;
    width: 100%;
  }

  .admin-responsive-table {
    table-layout: auto;
    background: transparent;
  }

  .admin-responsive-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .admin-responsive-table thead tr,
  .admin-responsive-table thead th {
    display: block;
    width: 1px;
    height: 1px;
    padding: 0 !important;
    overflow: hidden;
  }

  .admin-responsive-table tbody {
    display: grid;
    gap: 0.875rem;
    padding: 1.25rem;
    background: transparent;
  }

  .admin-responsive-table tbody > :not([hidden]) ~ :not([hidden]) {
    border-top-width: 0;
  }

  .admin-responsive-table tbody tr {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: #ffffff;
  }

  .admin-responsive-table tbody td {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.42fr) minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    width: 100%;
    padding: 0.875rem 1rem !important;
    border-bottom: 1px solid var(--line);
    text-align: left !important;
  }

  .admin-responsive-table tbody td:last-child {
    border-bottom: 0;
  }

  .admin-responsive-table tbody td.admin-table-actions {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    white-space: normal;
  }

  .admin-responsive-table tbody td.admin-table-actions .flex {
    flex-wrap: nowrap;
  }

  .admin-responsive-table tbody td::before {
    min-width: 0;
    color: #64748b;
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .admin-responsive-table tbody td.admin-table-empty {
    display: block;
    padding: 1.5rem !important;
    text-align: center !important;
  }

  .admin-responsive-table tbody td.admin-table-empty::before {
    display: none;
  }
}

@media (max-width: 639px) {
  .admin-module-table-shell {
    margin: 1rem;
  }

  .admin-responsive-table tbody {
    gap: 0.75rem;
    padding: 0.875rem;
  }

  .admin-module-table-shell .admin-responsive-table tbody {
    padding: 0;
  }

  .admin-responsive-table tbody td {
    grid-template-columns: minmax(6.25rem, 0.4fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.8125rem 0.875rem !important;
    font-size: 0.8125rem;
  }
}

.landing-chip {
  min-height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.landing-chip:hover {
  background: rgba(255, 255, 255, 0.18);
}

.landing-chip:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.public-navbar {
  border-top: 3px solid var(--primary-500);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 14, 0.98);
  box-shadow: 0 12px 32px rgba(8, 11, 14, 0.2);
  backdrop-filter: blur(14px);
}

.brand-logo {
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(8, 11, 14, 0.22);
}

.brand-footer,
.app-sidebar {
  background: var(--brand-900);
}

.brand-footer {
  color: rgba(255, 255, 255, 0.74);
}

.brand-hero {
  min-height: min(720px, calc(100vh - 4.75rem));
  border-bottom: 4px solid var(--primary-500);
  background: var(--brand-900);
}

.brand-hero::after {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: min(30vw, 22rem);
  height: 0.35rem;
  background: var(--primary-500);
  content: "";
}

.hero-tracking-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--primary-500);
  border-radius: 0.75rem;
  background: rgba(8, 11, 14, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.section-kicker {
  color: var(--primary-600);
  font-weight: 700;
}

.service-icon {
  border: 1px solid var(--line);
  background: #f8fafc;
}

.landing-section {
  overflow: clip;
}

.section-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--brand-900);
  box-shadow: 0 22px 55px rgba(8, 11, 14, 0.14);
}

.section-media::before {
  position: absolute;
  inset: 0.75rem auto 0.75rem 0.75rem;
  z-index: 1;
  width: 0.25rem;
  background: var(--primary-500);
  content: "";
}

.section-media img,
.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.65rem;
  background: rgba(8, 11, 14, 0.9);
  color: rgba(255, 255, 255, 0.86);
  padding: 0.85rem 1rem 0.85rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.section-media-marker {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: 50%;
  background: var(--primary-500);
  box-shadow: 0 0 0 0.25rem rgba(225, 38, 28, 0.18);
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.service-item {
  position: relative;
  display: grid;
  min-height: 11rem;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.service-item:hover {
  z-index: 1;
  background: #f8fafc;
  box-shadow: inset 0 0.2rem 0 var(--primary-500);
}

.service-item-number {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-item-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  background: #fef2f2;
  color: var(--primary-600);
}

.service-item-icon svg,
.benefit-list svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-item h3,
.benefit-list h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.service-item p,
.benefit-list p {
  margin-top: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.65;
}

.process-section,
.testimonial-section {
  border-top: 4px solid var(--primary-500);
  background: var(--brand-900);
}

.process-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  background: #000000;
}

.process-media figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  border-left: 3px solid var(--primary-500);
  background: rgba(8, 11, 14, 0.9);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.process-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.45rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.process-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0;
}

.process-steps li:last-child {
  border-bottom: 0;
}

.process-step-number {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--brand-900);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.process-steps li:first-child .process-step-number,
.process-steps li:last-child .process-step-number {
  border-color: var(--primary-500);
  background: var(--primary-500);
}

.process-step-label {
  color: #f87171;
  font-size: 0.7rem;
  font-weight: 800;
}

.process-steps h3 {
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.process-steps li > div > p:last-child {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.6;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.benefit-list article > span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--brand-900);
  color: #ffffff;
}

.benefit-list article:nth-child(2) > span,
.benefit-list article:nth-child(4) > span {
  background: var(--primary-500);
}

.section-media-tall {
  aspect-ratio: 4 / 3;
}

.status-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef2f5;
}

.status-count {
  display: flex;
  min-width: 10rem;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid var(--primary-500);
  padding-left: 1rem;
}

.status-count strong {
  color: var(--brand-900);
  font-size: 2rem;
  line-height: 1;
}

.status-count span {
  max-width: 5rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

[data-status-strip] {
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scrollbar-color: var(--primary-500) #d9e1e8;
  scrollbar-width: thin;
}

.status-rail {
  position: relative;
  display: grid;
  min-width: 73.5rem;
  grid-template-columns: repeat(7, minmax(9.5rem, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-rail::before {
  position: absolute;
  top: 1.45rem;
  right: 5rem;
  left: 1.5rem;
  height: 2px;
  background: #cbd5e1;
  content: "";
}

.status-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: 1rem;
}

.status-node-index {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #ffffff;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 900;
}

.status-node:first-child .status-node-index,
.status-node:last-child .status-node-index {
  border-color: var(--primary-500);
  background: var(--primary-500);
  color: #ffffff;
}

.status-node-label {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 800;
}

.status-node-description {
  margin-top: 0.4rem;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.55;
}

.status-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-note > span {
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.15);
}

.testimonial-slider {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.75rem;
  background: #0d1419;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-slider:focus-visible {
  outline: 3px solid var(--primary-500);
  outline-offset: 4px;
}

.testimonial-stage {
  min-height: 21rem;
}

.testimonial-stage figure {
  position: relative;
  min-height: 21rem;
  padding: 2rem;
}

.testimonial-stage figure.hidden {
  display: none;
}

.testimonial-quote {
  display: block;
  height: 3.5rem;
  color: var(--primary-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-stage blockquote {
  max-width: 46rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-stage figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.testimonial-avatar {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--brand-700);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.testimonial-stage figcaption strong,
.testimonial-stage figcaption small {
  display: block;
}

.testimonial-stage figcaption strong {
  color: #ffffff;
  font-size: 0.875rem;
}

.testimonial-stage figcaption small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.testimonial-controls {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}

.testimonial-controls > div:first-child button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.5rem;
  color: #ffffff;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.testimonial-controls > div:first-child button:hover {
  border-color: var(--primary-500);
  background: var(--primary-500);
}

.testimonial-controls button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.testimonial-controls svg {
  width: 1.2rem;
  height: 1.2rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dots button {
  position: relative;
  width: 2.5rem;
  height: 2.75rem;
}

.testimonial-dots button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background-color 180ms ease;
}

.testimonial-dots button.is-active::after {
  width: 1.5rem;
  background: var(--primary-500);
}

.testimonial-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--primary-500);
  border-radius: 0.5rem;
  background: var(--brand-900);
  color: #ffffff;
  padding: 1rem;
}

.faq-contact img {
  width: 3.5rem;
  height: 3.5rem;
  flex: none;
  border-radius: 0.5rem;
  object-fit: cover;
}

.faq-contact p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
}

.faq-contact a {
  display: inline-block;
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
}

.faq-contact a:hover {
  color: #fca5a5;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  transition: background-color 180ms ease;
}

.faq-list details[open] {
  background: #f8fafc;
}

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 5rem;
  cursor: pointer;
  grid-template-columns: 2rem minmax(0, 1fr) 2.75rem;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: #0f172a;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary-600);
  content: "+";
  font-size: 1.25rem;
  font-weight: 500;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--primary-500);
  color: #ffffff;
  content: "-";
}

.faq-list summary > span {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 900;
}

.faq-list summary > strong {
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-list details > p {
  max-width: 48rem;
  padding: 0 4.75rem 1.5rem 4rem;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.75;
}

.tracking-page {
  background:
    linear-gradient(180deg, var(--brand-900) 0, var(--brand-700) 19rem, var(--surface) 19rem);
}

.tracking-intro {
  border-top: 4px solid var(--primary-500);
  box-shadow: 0 20px 45px rgba(8, 11, 14, 0.14);
}

.tracking-brand-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--primary-500);
  background: var(--brand-900);
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(8, 11, 14, 0.18);
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.65rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(8, 11, 14, 0.28);
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-fab:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.auth-page {
  min-height: 100vh;
  background: var(--brand-900);
}

.auth-layout {
  min-height: 100vh;
}

.auth-brand-panel {
  position: relative;
  overflow: hidden;
  background: var(--brand-900);
}

.auth-brand-panel::after {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: 9rem;
  height: 0.4rem;
  background: var(--primary-500);
  content: "";
}

.auth-card {
  width: min(100%, 32rem);
  border-top: 4px solid var(--primary-500);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.auth-input {
  width: 100%;
  min-height: 2.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  padding: 0.7rem 0.85rem;
  color: #0f172a;
  outline: none;
}

.auth-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(225, 38, 28, 0.13);
}

.admin-shell {
  background: var(--surface);
}

.desktop-sidebar {
  display: none;
}

.app-sidebar {
  min-height: 100vh;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 12px 0 30px rgba(8, 11, 14, 0.12);
}

.admin-topbar {
  border-top: 3px solid var(--primary-500);
}

.admin-content-view {
  animation: view-in 180ms ease-out;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(0.25rem);
  }

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

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .admin-shell {
    display: flex;
  }

  .desktop-sidebar {
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    flex: none;
  }

  .desktop-sidebar .app-sidebar {
    height: 100vh;
    min-height: 0;
  }

}

@media (max-width: 639px) {
  .whatsapp-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .whatsapp-fab {
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
    padding: 0;
  }

  .brand-hero {
    min-height: auto;
  }

  .service-item {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.2rem;
  }

  .service-item-number {
    grid-column: 1 / -1;
  }

  .testimonial-stage,
  .testimonial-stage figure {
    min-height: 24rem;
  }

  .testimonial-stage figure {
    padding: 1.5rem;
  }

  .testimonial-stage blockquote {
    font-size: 1.05rem;
  }

  .testimonial-controls {
    flex-wrap: wrap;
  }

  .testimonial-dots {
    order: 3;
    width: 100%;
  }

  .faq-list summary {
    grid-template-columns: 1.5rem minmax(0, 1fr) 2.75rem;
    gap: 0.75rem;
    padding-right: 0;
  }

  .faq-list details > p {
    padding: 0 1rem 1.5rem 3.25rem;
  }
}

.app-toast {
  animation: toast-in 180ms ease-out;
}

.report-print-only {
  display: none;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  [data-public-nav],
  [data-public-footer],
  .whatsapp-fab,
  [data-sidebar-open],
  [data-sidebar-overlay],
  aside,
  button,
  .report-controls,
  .no-print {
    display: none !important;
  }

  .report-print-only {
    display: block !important;
  }

  .report-print-surface {
    background: #ffffff !important;
  }

  body.is-printing-report main > div > :not(#laporan) {
    display: none !important;
  }

  body.is-printing-report #laporan {
    border: 0 !important;
    box-shadow: none !important;
  }

  .report-print-break-inside {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .app-card {
    border-color: #cbd5e1;
    box-shadow: none;
  }

  main {
    max-width: none !important;
    padding: 0 !important;
  }

  table {
    font-size: 11px;
  }

  .admin-table-shell {
    overflow: visible !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0 !important;
  }

  .admin-responsive-table {
    display: table !important;
    table-layout: auto !important;
  }

  .admin-responsive-table thead {
    position: static !important;
    display: table-header-group !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .admin-responsive-table tbody {
    display: table-row-group !important;
    padding: 0 !important;
  }

  .admin-responsive-table tr {
    display: table-row !important;
    border: 0 !important;
  }

  .admin-responsive-table th,
  .admin-responsive-table td {
    display: table-cell !important;
    padding: 0.4rem 0.5rem !important;
    border-bottom: 1px solid #cbd5e1 !important;
    text-align: left !important;
  }

  .admin-responsive-table .admin-table-actions {
    width: auto !important;
    white-space: normal !important;
  }

  .admin-responsive-table td::before {
    display: none !important;
  }

  a[href]::after {
    content: "";
  }
}
