@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg-main: #f4f7f4;
  --bg-panel: #ffffff;
  --bg-band: #e6f1eb;
  --text-main: #10221a;
  --text-soft: #385046;
  --line: #c6d5cc;
  --brand: #0f8a5f;
  --brand-strong: #0a6d4b;
  --accent: #f59e0b;
  --accent-soft: #ffe8b6;
  --focus: #0b5fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 10% 10%, #f9fff7 0%, var(--bg-main) 46%, #eef3f6 100%);
  color: var(--text-main);
  font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0;
}

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

a {
  color: var(--brand-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.92);
}

@supports (background: color-mix(in srgb, #ffffff, #000000)) {
  .site-header {
    background: color-mix(in srgb, #ffffff 86%, #e9f5ed 14%);
  }
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083e2d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-width: 84px;
  min-height: 54px;
}

.brand-logo {
  width: clamp(190px, 22vw, 254px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 0.8rem;
  border: 1px solid #bfd2c7;
  border-radius: 8px;
  color: #0f3f2f;
  background: #f7fbf8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle-bars {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-bars span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-shell {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.7rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text-soft);
}

.nav-link:hover,
.nav-link.is-active {
  color: #0a3d2d;
  background: #e6f5ed;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  font-weight: 600;
}

.button-link.muted {
  color: #134131;
  background: #f2f8f4;
  border: 1px solid #c9dbd1;
}

.header-actions {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.breadcrumbs {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.breadcrumbs .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
}

.hero {
  padding: clamp(2rem, 4vw, 4rem) 0 1.5rem;
}

.hero-inner {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    linear-gradient(130deg, #deefe4 0%, #f8efcb 55%, #e4edf7 100%);
  border: 1px solid #d0ded5;
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 1.25rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(10, 109, 75, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 42, 31, 0.16);
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #5b470b;
  background: var(--accent-soft);
  border: 1px solid #f7cc78;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  color: #082a1f;
}

h1 {
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  line-height: 1.14;
}

h2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.06rem;
  line-height: 1.2;
}

p {
  margin: 0 0 0.9rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.lead {
  font-size: 1.05rem;
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.button.alt {
  color: #134131;
  border-color: #b8cdc1;
  background: #f9fffb;
}

.button.small {
  min-height: 34px;
  padding: 0 0.75rem;
  font-size: 0.86rem;
}

.inline-form {
  margin: 0;
  display: inline-flex;
}

.section {
  padding: 1.8rem 0;
}

.section-band {
  background: linear-gradient(130deg, #edf6ef 0%, #fdf8e8 100%);
  border-top: 1px solid #d2dfd6;
  border-bottom: 1px solid #d2dfd6;
}

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

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.col-6 {
  grid-column: span 6;
}

.col-5 {
  grid-column: span 5;
}

.col-8 {
  grid-column: span 8;
}

.col-7 {
  grid-column: span 7;
}

.col-12 {
  grid-column: span 12;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-panel);
  padding: 1rem;
}

.metric {
  margin: 0;
  font-size: 1.7rem;
  color: #0b3e2d;
}

.muted {
  color: #547062;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 0.7rem 0;
  border-top: 1px dashed #cfdcd3;
}

.list li:first-child {
  border-top: 0;
}

.callout {
  padding: 1rem;
  border: 1px solid #cfe1d6;
  background: #f7fbf8;
  border-radius: 8px;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.map-panel-copy,
.google-map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-panel-copy {
  padding: 1rem;
}

.map-panel-copy .button {
  margin-top: 0.4rem;
}

.google-map-frame {
  min-height: 430px;
  overflow: hidden;
}

.google-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.pending-order-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pending-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #d4e3da;
  border-radius: 8px;
  background: #fff;
  padding: 0.85rem;
}

.pending-order-item p {
  margin: 0.25rem 0 0;
}

.seo-section-heading {
  max-width: 760px;
  margin-bottom: 1rem;
}

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

.step-card,
.trust-card,
.device-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0a6d4b;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

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

.device-card {
  text-align: center;
  min-height: 92px;
  display: grid;
  place-items: center;
}

.device-card strong {
  color: #0f4835;
}

.download-highlight-grid,
.download-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.download-card,
.download-device-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.download-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.62rem;
  border-radius: 999px;
  border: 1px solid #d4e3da;
  color: #184334;
  background: #f8fcf9;
  font-size: 0.82rem;
  font-weight: 700;
}

.download-code {
  margin: 0;
  color: #0b3e2d;
  font-weight: 600;
}

.download-code.compact {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.62rem;
  border-radius: 8px;
  border: 1px solid #f1d485;
  background: #fff8df;
  color: #5b470b;
  white-space: nowrap;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.download-table td {
  vertical-align: top;
}

.alert {
  border-radius: 8px;
  border: 1px solid #cfe1d6;
  background: #f7fbf8;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
}

.alert.error {
  border-color: #f2c6c6;
  background: #fff5f5;
  color: #7e2222;
}

.alert.success {
  border-color: #bfe5cf;
  background: #f2fcf6;
  color: #145333;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field.full {
  grid-column: span 2;
}

.is-hidden {
  display: none !important;
}

.field label {
  font-size: 0.9rem;
  color: #184334;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  min-height: 40px;
  border: 1px solid #bfd2c7;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 0.96rem;
  font-family: inherit;
  color: #1a342a;
  background: #fff;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.6rem;
  border-radius: 999px;
  border: 1px solid #cdded4;
  background: #f4faf6;
  color: #155238;
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  text-align: left;
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid #d7e3dc;
}

th {
  font-weight: 700;
  color: #124131;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.58rem;
  border-radius: 999px;
  border: 1px solid #cdded4;
  background: #f4faf6;
  color: #155238;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-paid,
.status-active,
.status-success,
.status-verified {
  border-color: #bfe5cf;
  background: #e9f9ef;
  color: #145333;
}

.status-pending,
.status-waiting,
.status-manual_review,
.status-unverified {
  border-color: #f1d485;
  background: #fff7d9;
  color: #684d07;
}

.status-failed,
.status-canceled,
.status-cancelled,
.status-expired,
.status-suspended,
.status-refunded {
  border-color: #f2c6c6;
  background: #fff0f0;
  color: #7e2222;
}

.status-closed,
.status-paused {
  border-color: #cfd6dd;
  background: #f3f6f8;
  color: #344450;
}

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

.management-card,
.quick-card,
.credential-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.management-card h3,
.quick-card strong {
  display: block;
  margin-top: 0.65rem;
}

.mini-form,
.admin-row-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.mini-form.stacked {
  margin-top: 0.55rem;
}

.mini-select,
.mini-input {
  min-height: 34px;
  max-width: 150px;
  border: 1px solid #bfd2c7;
  border-radius: 8px;
  padding: 0.38rem 0.5rem;
  font: inherit;
  font-size: 0.86rem;
  color: #18362b;
  background: #fff;
}

.mini-input.wide {
  max-width: 240px;
  min-width: 190px;
}

.toggle-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #184334;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-create-box {
  margin-top: 1rem;
}

.admin-create-box h3 {
  margin-bottom: 0.7rem;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) 1fr;
  gap: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed #d5e2da;
}

.detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list dt {
  color: #184334;
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.detail-list.compact {
  gap: 0.5rem;
}

.detail-list.compact div {
  grid-template-columns: 86px 1fr;
}

.detail-list .full {
  grid-template-columns: 86px 1fr;
}

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

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

.credential-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.credential-head h3 {
  margin: 0.55rem 0 0;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #f7fbf8;
}

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

.footer-bottom {
  border-top: 1px solid #dbe6df;
  padding: 0.8rem 0 1.3rem;
  color: #4f665b;
}

.faq-item {
  border: 1px solid #cfddd4;
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.kpi {
  border: 1px solid #cfddd4;
  border-radius: 8px;
  background: #fff;
  padding: 0.75rem;
}

.kpi strong {
  display: block;
  font-size: 1.2rem;
  color: #0f4835;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.package-card {
  border: 1px solid #c8d9cf;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}

.package-card h3 {
  margin: 0.55rem 0 0.35rem;
}

.pro-package-cards {
  align-items: stretch;
}

.pro-package-card {
  position: relative;
  overflow: hidden;
}

.pro-package-card.is-featured {
  border-color: #0f8a5f;
  box-shadow: 0 18px 42px rgba(10, 109, 75, 0.16);
}

.pro-package-card.is-featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.package-card-top,
.package-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.package-duration {
  color: #184334;
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-weight: 700;
}

.package-price {
  margin: 0;
  color: #083826;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Space Grotesk", "Sora", sans-serif;
}

.plan-features {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

.pack-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pack-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.75rem;
  border: 1px solid #cdded4;
  border-radius: 999px;
  background: #fff;
  color: #174234;
  font-weight: 600;
}

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

.future-card {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.packages-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.packages-final-cta p {
  margin-bottom: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 15, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 90;
}

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

.modal-panel {
  width: min(620px, 100%);
  border: 1px solid #bdd1c6;
  border-radius: 8px;
  background: #fff;
  padding: 1.15rem;
  position: relative;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

@supports (max-height: calc(100dvh - 2rem)) {
  .modal-panel {
    max-height: calc(100dvh - 2rem);
  }
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #cdded4;
  background: #f5faf7;
  color: #0f3f2f;
  font-weight: 700;
  cursor: pointer;
}

.legal-prose {
  max-width: 74ch;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 58px;
  padding: 0.5rem 1rem 0.5rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.32), 0 3px 10px rgba(8, 42, 31, 0.18);
  text-decoration: none;
  font-weight: 700;
  isolation: isolate;
  animation: whatsappFloat 4s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.28);
  animation: whatsappPulse 2.6s ease-out infinite;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.25) 48%, transparent 58%);
  transform: translateX(-110%);
  animation: whatsappShine 5.4s ease-in-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(18, 140, 126, 0.38), 0 4px 12px rgba(8, 42, 31, 0.22);
}

.whatsapp-float-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.whatsapp-float-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float-text {
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes whatsappShine {
  0%,
  64% {
    transform: translateX(-110%);
  }
  82%,
  100% {
    transform: translateX(110%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .menu-toggle-bars span {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .nav-wrap {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 220px;
    max-height: 54px;
  }

  .nav-link {
    padding: 0 0.5rem;
    font-size: 0.88rem;
  }

  .button-link {
    padding: 0 0.75rem;
  }
}

@media (max-width: 1040px) {
  .site-header {
    z-index: 100;
  }

  .nav-wrap {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.45rem 0;
  }

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

  .brand-logo {
    width: min(230px, 58vw);
    height: auto;
    max-height: 54px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-shell {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 0.85rem max(1rem, calc((100vw - 1100px) / 2 + 1rem)) 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 36px rgba(8, 42, 31, 0.12);
  }

  @supports (max-height: calc(100dvh - 68px)) {
    .nav-shell {
      max-height: calc(100dvh - 68px);
    }
  }

  .site-header.is-menu-open .nav-shell {
    display: grid;
    gap: 0.85rem;
  }

  .nav,
  .header-actions {
    width: min(680px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .nav-link,
  .button-link {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 0.85rem;
    font-size: 0.98rem;
  }

  .button-link {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 760px;
  }

  .package-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .management-grid,
  .action-grid,
  .credential-grid,
  .future-grid,
  .download-highlight-grid,
  .download-device-grid {
    grid-template-columns: 1fr 1fr;
  }

  .col-4,
  .col-3,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 12;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .kpi-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.45rem 0;
  }

  .button-link {
    width: 100%;
  }

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

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

  .footer-grid,
  .kpi-strip,
  .package-cards,
  .feature-grid,
  .device-grid,
  .management-grid,
  .action-grid,
  .credential-grid,
  .future-grid,
  .download-highlight-grid,
  .download-device-grid {
    grid-template-columns: 1fr;
  }

  .pending-order-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(210px, 56vw);
    max-height: 50px;
  }

  .whatsapp-float {
    min-height: 54px;
    padding: 0.45rem;
  }

  .whatsapp-float-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .admin-row-form,
  .mini-form {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-select,
  .mini-input,
  .mini-input.wide {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .detail-list div,
  .detail-list.compact div,
  .detail-list .full {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .packages-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .packages-final-cta .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(1100px, calc(100% - 1rem));
  }

  .menu-toggle {
    width: 44px;
    padding: 0;
  }

  .menu-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .nav,
  .header-actions {
    grid-template-columns: 1fr;
  }

  .actions .button,
  .actions .button-link {
    width: 100%;
  }

  .hero-inner {
    padding: 1rem;
  }

  h1 {
    font-size: 1.55rem;
  }

  .lead {
    font-size: 1rem;
  }
}
