:root {
  --bg: #090907;
  --ink: #f7f4ec;
  --muted: #b8b4aa;
  --soft: #f3eee4;
  --soft-ink: #17140f;
  --panel: #12120f;
  --panel-2: #1b1a16;
  --line: rgba(247, 244, 236, 0.14);
  --line-dark: rgba(23, 20, 15, 0.12);
  --orange: #ff5a2c;
  --yellow: #ffd166;
  --lime: #c9ff45;
  --cyan: #35d6ff;
  --green: #31c48d;
  --red: #ff5a5f;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-h: 82px;
  --photo-workshop: url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=82");
  --photo-engine: url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1200&q=82");
  --photo-car: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=82");
  --photo-detail: url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1200&q=82");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(9, 9, 7, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 7, 0.96);
  border-color: var(--line);
}

.nav-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  width: 144px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.icon {
  width: 1.18em;
  height: 1.18em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 236, 0.06);
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

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

.btn-primary {
  color: #120f0b;
  background: var(--lime);
  box-shadow: 0 12px 32px rgba(201, 255, 69, 0.18);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.07);
  border-color: var(--line);
}

.btn-dark {
  color: var(--ink);
  background: var(--soft-ink);
}

.btn-block {
  width: 100%;
}

.page {
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 28px) 0 56px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 9, 7, 0.96), rgba(9, 9, 7, 0.8)),
    var(--photo-workshop) center / cover;
}

.hero.compact {
  min-height: auto;
  padding: calc(var(--header-h) + 44px) 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(9, 9, 7, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-title,
.section-title,
.card-title {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-title {
  max-width: 11ch;
  font-size: 4.9rem;
  font-weight: 900;
}

.hero-text,
.section-copy,
.card-copy {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.12rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

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

.trust-pill {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 244, 236, 0.06);
}

.trust-pill span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.trust-pill strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
  line-height: 1.16;
}

.hero-media {
  min-height: 560px;
  display: grid;
  align-content: end;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(9, 9, 7, 0.06), rgba(9, 9, 7, 0.78)),
    var(--photo-car) center / cover;
  box-shadow: var(--shadow);
}

.action-card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(9, 9, 7, 0.82);
  border: 1px solid var(--line);
}

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

.action-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.quick-actions a,
.social-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(247, 244, 236, 0.08);
  font-weight: 800;
}

.quick-actions .icon {
  width: 22px;
  height: 22px;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-chip {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.08);
  border-color: transparent;
  padding: 0 14px;
}

.social-chip .icon {
  width: 21px;
  height: 21px;
}

.social-chip.facebook {
  background: #1877f2;
}

.social-chip.tiktok {
  background: #0b0b0f;
  border-color: rgba(255, 255, 255, 0.18);
}

.social-chip.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
}

.section {
  padding: 76px 0;
}

.section.soft {
  color: var(--soft-ink);
  background: var(--soft);
}

.section.dark {
  background: #0f0f0c;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-tag {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
}

.section-copy {
  margin: 0;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

.issue-card,
.service-card,
.price-card,
.step-card,
.feature-card,
.contact-card,
.dashboard-card,
.table-card,
.form-shell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.soft .issue-card,
.soft .service-card,
.soft .price-card,
.soft .step-card,
.soft .feature-card,
.soft .contact-card,
.soft .table-card,
.soft .form-shell {
  border-color: var(--line-dark);
  background: #fffaf0;
  box-shadow: none;
}

.issue-card {
  min-height: 184px;
  display: grid;
  align-content: space-between;
  padding: 18px;
}

.issue-card strong,
.service-card h3,
.price-card h3,
.step-card h3,
.feature-card h3,
.contact-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.issue-card p,
.service-card p,
.price-card p,
.step-card p,
.feature-card p,
.contact-card p {
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.72;
}

.issue-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 900;
}

.service-card,
.price-card,
.step-card,
.feature-card,
.contact-card,
.table-card,
.form-shell {
  padding: 18px;
}

.service-media,
.reel-media,
.wide-media {
  min-height: 230px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 9, 7, 0.08), rgba(9, 9, 7, 0.72)),
    var(--photo-engine) center / cover;
}

.service-media.detail,
.wide-media.detail {
  background-image:
    linear-gradient(180deg, rgba(9, 9, 7, 0.08), rgba(9, 9, 7, 0.72)),
    var(--photo-detail);
}

.service-media.car,
.wide-media.car {
  background-image:
    linear-gradient(180deg, rgba(9, 9, 7, 0.08), rgba(9, 9, 7, 0.72)),
    var(--photo-car);
}

.service-card .service-media {
  margin: -18px -18px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--soft-ink);
  background: var(--lime);
  font-size: 0.84rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
}

.wide-media {
  min-height: 470px;
}

.copy-panel {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.copy-panel.light {
  color: var(--soft-ink);
  background: #fffaf0;
  border-color: var(--line-dark);
}

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

.list li {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(247, 244, 236, 0.08);
}

.light .list li,
.soft .list li {
  background: rgba(23, 20, 15, 0.06);
}

.reels {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: center;
}

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

.reel-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 9, 7, 0.02), rgba(9, 9, 7, 0.8)),
    var(--photo-workshop) center / cover;
}

.reel-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(9, 9, 7, 0.02), rgba(9, 9, 7, 0.8)),
    var(--photo-engine);
}

.reel-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(9, 9, 7, 0.02), rgba(9, 9, 7, 0.8)),
    var(--photo-detail);
}

.reel-card strong {
  font-size: 1rem;
  line-height: 1.08;
}

.price-value {
  margin: 14px 0 0;
  color: var(--lime);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.soft .price-value {
  color: var(--orange);
}

.table-rows {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(247, 244, 236, 0.07);
}

.table-row span {
  color: var(--muted);
}

.soft .table-row {
  background: rgba(23, 20, 15, 0.06);
}

.soft .table-row span {
  color: rgba(23, 20, 15, 0.62);
}

.step-card {
  min-height: 188px;
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: var(--lime);
}

.cta-band .section-tag,
.cta-band .section-copy {
  color: rgba(23, 20, 15, 0.72);
}

.cta-band .section-title {
  max-width: 760px;
  font-size: 2.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.form-shell {
  background: #fffaf0;
  color: var(--soft-ink);
  border-color: var(--line-dark);
}

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

.field-span {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 6px;
}

.field-group label {
  font-weight: 800;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: #ffffff;
}

.field-group textarea {
  min-height: 132px;
  resize: vertical;
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 0;
  color: rgba(23, 20, 15, 0.72);
}

.checkbox-line input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.feedback {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(49, 196, 141, 0.12);
  color: var(--soft-ink);
}

.feedback span {
  display: block;
}

.whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #07140b;
  background: #25d366;
  font-weight: 900;
}

.snapshot-card {
  margin-top: 16px;
}

.dashboard-preview {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-head span {
  color: var(--muted);
}

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

.dashboard-card {
  min-height: 120px;
  padding: 14px;
}

.dashboard-card span {
  display: block;
  color: var(--muted);
}

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

.order-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.order-card span,
.order-card small {
  color: var(--muted);
}

.order-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.12;
}

.order-card p {
  margin: 10px 0 0;
  color: var(--ink);
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.order-meta small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.08);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.order-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #07140b;
  background: #25d366;
  font-weight: 900;
}

.order-actions a:nth-child(2) {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.1);
  border: 1px solid var(--line);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(9, 9, 7, 0.74);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(620px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: #fffaf0;
}

.modal-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: transparent;
  font-size: 1.4rem;
}

.modal-title {
  font-size: 2rem;
}

.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.modal-switch {
  margin: 18px 0 0;
}

.modal-switch button {
  border: 0;
  padding: 0;
  color: var(--orange);
  background: transparent;
  font-weight: 900;
}

.site-footer {
  padding: 48px 0 90px;
  color: var(--muted);
  background: #090907;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(260px, 0.8fr);
  gap: 24px;
}

.footer-brand .brand-logo {
  width: 172px;
}

.footer-copy {
  max-width: 52ch;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
}

.footer-links .icon {
  width: 18px;
  height: 18px;
}

.footer-bar {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mobile-action-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 9, 7, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mobile-action-bar a {
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: var(--radius);
  color: var(--soft-ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.mobile-action-bar .icon {
  width: 22px;
  height: 22px;
}

.mobile-action-bar a:nth-child(2) {
  color: #07140b;
  background: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.48);
}

.mobile-action-bar a:nth-child(3) {
  color: var(--ink);
  background: rgba(247, 244, 236, 0.1);
  border: 1px solid var(--line);
}

.mobile-action-bar a:nth-child(4) {
  color: var(--ink);
  background: rgba(53, 214, 255, 0.18);
  border: 1px solid rgba(53, 214, 255, 0.28);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07140b;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(37, 211, 102, 0.14);
  font-weight: 950;
}

.floating-whatsapp .icon {
  width: 28px;
  height: 28px;
}

.notification-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.notification {
  max-width: 320px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.notification.error {
  border-color: rgba(255, 90, 95, 0.34);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .reels,
  .contact-layout,
  .footer-grid,
  .orders-list {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .wide-media {
    min-height: 420px;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 860px) {
  :root {
    --header-h: 74px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 128px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 9, 7, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 24px) 0 38px;
  }

  .hero.compact {
    padding-top: calc(var(--header-h) + 28px);
  }

  .hero-title {
    max-width: 100%;
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .cta-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row,
  .grid.three,
  .grid.two,
  .dashboard-grid,
  .field-grid,
  .reel-stack {
    grid-template-columns: 1fr;
  }

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

  .hero-media,
  .wide-media {
    min-height: 360px;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .cta-band .section-title {
    font-size: 2rem;
  }

  .table-row {
    display: grid;
  }

  .reel-card {
    min-height: 300px;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 84px;
    width: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .notification-stack {
    left: 12px;
    right: 12px;
    bottom: 86px;
  }

  .notification {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
