:root {
  color-scheme: dark;
  --bg: #07090c;
  --bg-soft: #0b0e12;
  --card: #11161c;
  --card-hover: #171e26;
  --accent: #f47a0a;
  --accent-hover: #ff8a1c;
  --text: #ffffff;
  --muted: #aab2bd;
  --border: rgba(255, 255, 255, 0.1);
  --success: #22c55e;
  --error: #ef4444;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 122, 10, 0.13), transparent 28rem),
    linear-gradient(180deg, #07090c 0%, #0b0e12 44%, #07090c 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(244, 122, 10, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #160900;
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: min(var(--max), calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  width: 188px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-nav .nav-cta {
  margin-left: 4px;
  background: var(--accent);
  color: #160900;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-hover);
  color: #160900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 118px 20px 76px;
}

.hero-inner,
.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--text);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.45rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.14rem, 2vw, 1.48rem);
  line-height: 1.15;
}

.hero-copy {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #160900;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hover);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% auto auto;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 122, 10, 0.2);
  filter: blur(70px);
}

.dashboard-window,
.system-mockup {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 22, 28, 0.96), rgba(11, 14, 18, 0.96));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.dashboard-window {
  padding: 14px;
}

.window-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 14px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-card,
.chart-card,
.status-panel,
.benefit-card,
.case-card,
.founder-card,
.faq-item,
.solution-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.metric-card,
.chart-card,
.status-panel {
  padding: 14px;
}

.metric-card:hover,
.chart-card:hover,
.status-panel:hover,
.benefit-card:hover,
.case-card:hover,
.solution-card:hover {
  background: var(--card-hover);
  border-color: rgba(244, 122, 10, 0.32);
  transform: translateY(-3px);
}

.metric-card span,
.chart-heading span,
.status-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-card strong,
.chart-heading b {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.1rem;
}

.metric-card.strong {
  background: linear-gradient(135deg, rgba(244, 122, 10, 0.24), var(--card));
}

.chart-card-wide {
  grid-column: 1 / -1;
}

.bar-chart {
  height: 118px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 8px 0;
  border-bottom: 1px solid var(--border);
}

.bar-chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
}

.status-panel {
  display: grid;
  gap: 12px;
}

.status-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-panel i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.status-panel b {
  color: var(--text);
}

.section {
  padding: clamp(64px, 8vw, 104px) 20px;
}

.section-dark {
  background: var(--bg-soft);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solution-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(244, 122, 10, 0.12);
  color: var(--accent-hover);
  font-weight: 950;
}

.solution-card p,
.case-card p,
.benefit-card span,
.about-grid p,
.founder-card p,
.faq-answer p,
.product-copy p,
.privacy-note {
  color: var(--muted);
}

.solution-card p {
  margin: 14px 0 0;
}

.solution-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--accent-hover);
  font-weight: 900;
}

.product-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(244, 122, 10, 0.12), transparent 26rem),
    var(--bg);
}

.product-grid,
.about-grid,
.contact-grid,
.faq-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.system-mockup {
  min-height: 360px;
  display: grid;
  grid-template-columns: 88px 1fr;
  padding: 16px;
}

.system-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 10px;
  border-right: 1px solid var(--border);
}

.system-sidebar span {
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.system-sidebar span:first-child {
  background: var(--accent);
}

.system-screen {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.system-top,
.system-cards span,
.feature-grid span,
.segment-list span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.system-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  align-items: center;
  padding: 0 18px;
}

.system-top span {
  color: var(--success);
  font-weight: 900;
}

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

.system-cards span {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.timeline-lines {
  display: grid;
  gap: 12px;
}

.timeline-lines i {
  height: 34px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(244, 122, 10, 0.32), rgba(255, 255, 255, 0.06));
}

.timeline-lines i:nth-child(2) {
  width: 82%;
}

.timeline-lines i:nth-child(3) {
  width: 64%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.feature-grid span,
.segment-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}

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

.benefit-card {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
}

.benefit-card strong {
  font-size: 1.28rem;
}

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

.case-card {
  padding: 24px;
}

.case-card > span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-card p {
  margin: 16px 0 0;
}

.case-card b {
  color: var(--text);
}

.method-section {
  background: var(--bg-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.timeline li {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: var(--card);
}

.timeline span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: #160900;
  font-weight: 950;
}

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

.about-section {
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.98)),
    url("assets/brand-dark.png") center / cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
}

.founder-card {
  padding: 24px;
}

.founder-card img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: #fff;
}

.trust-section {
  background: var(--bg-soft);
}

.segment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-grid {
  align-items: start;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-item button::after {
  content: "+";
  color: var(--accent-hover);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 122, 10, 0.12), transparent 26rem),
    var(--bg);
}

.contact-grid {
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 22, 28, 0.82);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
}

.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 122, 10, 0.72);
  box-shadow: 0 0 0 3px rgba(244, 122, 10, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form option {
  color: #101214;
}

.contact-form [aria-invalid="true"] {
  border-color: var(--error);
}

.privacy-note {
  margin: 0;
  font-size: 0.86rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-status.is-error {
  color: var(--error);
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 24px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--success);
  color: #031407;
  font-size: 0.92rem;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  transform: scale(0.92);
  transform-origin: right bottom;
}

.mobile-action-bar {
  position: fixed;
  z-index: 45;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(7, 9, 12, 0.94);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--card);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
}

.mobile-action-bar a:first-child {
  background: var(--success);
  color: #031407;
}

.site-footer {
  padding: 46px 20px 28px;
  border-top: 1px solid var(--border);
  background: #050608;
}

.footer-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin: 0 auto;
}

.footer-brand img {
  width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
}

.footer-inner nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-inner strong {
  margin-bottom: 4px;
}

.footer-inner a,
.footer-inner span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--accent-hover);
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(7, 9, 12, 0.98);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0 14px;
  }

  .site-nav .nav-cta {
    margin: 6px 0 0;
    justify-content: center;
  }

  .hero-inner,
  .product-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-grid,
  .case-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 10px;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .timeline li {
    min-height: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

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

@media (max-width: 700px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand {
    width: 148px;
    min-width: 128px;
  }

  .brand img {
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 124px 14px 46px;
  }

  .section {
    padding: 70px 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
    line-height: 1.04;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .dashboard-grid,
  .solution-grid,
  .feature-grid,
  .system-cards,
  .benefit-grid,
  .case-grid,
  .segment-list,
  .contact-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .system-mockup {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .system-sidebar {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .system-sidebar span {
    height: 30px;
  }

  .bar-chart {
    height: 120px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 360px) {
  .button,
  .mobile-action-bar a {
    font-size: 0.84rem;
  }

  .contact-form {
    padding: 16px;
  }
}
