/* MobPlay Store — Storefront */

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 17, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  overflow: visible;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  min-width: 0;
}
.nav__logo-img {
  width: auto;
  height: 44px;
  max-width: 140px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__search {
  position: relative;
  flex: 1;
  max-width: 440px;
}
.nav__search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 11px 16px 11px 42px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav__search input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: var(--ring);
}
.nav__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.nav__spacer {
  flex: 1;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.avatar:hover,
.user-menu--open .avatar {
  border-color: rgba(108, 60, 233, 0.6);
  box-shadow: var(--ring);
}

/* ---------- User dropdown menu ---------- */
.user-menu {
  position: relative;
}
.user-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  min-width: 220px;
  max-width: min(280px, calc(100vw - 28px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s var(--ease);
  z-index: 200;
}
.user-menu--open .user-menu__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-menu__head {
  padding: 10px 12px 12px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 4px;
}
.user-menu__head strong {
  display: block;
  font-size: 0.95rem;
}
.user-menu__head span {
  color: var(--muted);
  font-size: 0.8rem;
}
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.user-menu__item:hover {
  background: var(--surface-2);
  color: var(--text);
}
.user-menu__item--danger:hover {
  color: #fda4a4;
  background: rgba(239, 68, 68, 0.1);
}
.user-menu__divider {
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0;
}

/* ---------- Hero layout with side banners ---------- */
.hero-layout {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 16px;
  margin-top: 26px;
  align-items: stretch;
}
.hero-side {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-side__ph {
  color: var(--muted-2);
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
  line-height: 1.4;
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 54px 44px;
  margin-top: 26px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(0, 212, 255, 0.16), transparent 50%),
    linear-gradient(135deg, rgba(108, 60, 233, 0.28), rgba(20, 20, 30, 0.4));
  border: 1px solid var(--border);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--banner {
  background-size: cover;
  background-position: center;
}
.hero--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 11, 17, 0.88), rgba(11, 11, 17, 0.55));
}
.hero--banner > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 18ch;
  letter-spacing: -0.03em;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero__cta {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -180px;
  background: var(--grad);
  filter: blur(120px);
  opacity: 0.35;
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Section headers ---------- */
.section {
  margin-top: 48px;
}
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- Category chips ---------- */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover {
  color: var(--text);
  border-color: var(--violet);
}
.chip--active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---------- App grid & cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
  animation: rise 0.4s var(--ease) both;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 60, 233, 0.5);
  box-shadow: var(--shadow-glow);
}
.card__top {
  display: flex;
  gap: 14px;
  align-items: center;
}
.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  background: var(--surface-2);
  flex-shrink: 0;
}
.card__icon--ph {
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  color: var(--violet);
  font-weight: 800;
  font-size: 1.4rem;
}
.card__name {
  font-weight: 700;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__cat {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}
.card__desc {
  color: var(--muted);
  font-size: 0.87rem;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.card__rating {
  color: #fbbf24;
  font-weight: 600;
}
.card__share {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.card__share:hover {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.45);
  background: var(--bg-2);
}

/* ---------- Share panel ---------- */
.share-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.share-panel__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.share-panel__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.share-panel__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.share-btn:hover {
  border-color: rgba(0, 212, 255, 0.45);
  background: var(--bg-2);
  transform: translateY(-1px);
}
.share-btn--primary {
  grid-column: 1 / -1;
  background: var(--grad-soft);
  border-color: rgba(108, 60, 233, 0.45);
}
.share-btn--whatsapp:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
}
.share-btn--telegram:hover {
  color: #29a9ea;
  border-color: rgba(41, 169, 234, 0.45);
}
.share-panel__link {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.share-panel__input {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
}
.share-panel__copy {
  flex-shrink: 0;
}
.modal--share {
  max-width: 480px;
  padding: 24px;
}
.share-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.share-modal__head h2 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.share-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.share-modal__close:hover {
  color: var(--text);
  border-color: var(--muted);
}
.share-modal__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.static-page__channel--location {
  cursor: default;
}

/* ---------- Spotlight (featured) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.spot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  cursor: pointer;
  background: var(--surface);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.spot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.spot__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.spot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 11, 17, 0.92));
}
.spot__body {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
}
.spot__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.spot h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.spot p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 3px;
}

/* ---------- Empty / states ---------- */
.empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}
.empty h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ---------- App detail ---------- */
.detail__banner {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.detail__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail__head {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  margin-top: -54px;
  padding-inline: 28px;
  position: relative;
  z-index: 2;
}
.detail__icon {
  width: 112px;
  height: 112px;
  border-radius: 26px;
  border: 4px solid var(--bg);
  background: var(--surface-2);
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.detail__icon--ph {
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 2.4rem;
}
.detail__title {
  flex: 1;
  padding-bottom: 6px;
}
.detail__title h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.detail__title .pkg {
  color: var(--muted-2);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  margin-top: 4px;
}
.detail__stats {
  display: flex;
  gap: 28px;
  margin: 26px 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat__num {
  font-size: 1.3rem;
  font-weight: 800;
}
.stat__lbl {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.detail__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  margin-top: 10px;
}
.shots {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.shots img {
  height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  cursor: zoom-in;
}
.prose {
  color: #d6d6df;
  white-space: pre-wrap;
  line-height: 1.7;
}
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.side-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ---------- Download action (progress + manage) ---------- */
.download-action {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.download-status {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 14px 16px;
  text-align: center;
  color: #2e7d32;
}

.download-status[hidden] {
  display: none !important;
}

.download-status__title {
  font-weight: 700;
  margin: 0 0 6px;
  color: #1b5e20;
  font-size: 0.95rem;
}

.download-status__file {
  font-size: 0.82rem;
  margin: 0 0 10px;
  color: #388e3c;
  word-break: break-word;
  line-height: 1.4;
}

.download-status__bar {
  height: 4px;
  background: rgba(46, 125, 50, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.download-status__fill {
  height: 100%;
  background: #43a047;
  transition: width 0.12s linear;
}

.download-status__fallback {
  font-size: 0.8rem;
  margin: 0;
  color: #33691e;
}

.download-status__link {
  color: #3273dc;
  text-decoration: underline;
  cursor: pointer;
}

.btn--manage {
  background: #48c774;
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 0;
}

.btn--manage:hover {
  background: #3ec46d;
  filter: brightness(1.05);
}

.btn--manage[hidden],
.download-action .btn--download[hidden] {
  display: none !important;
}

.download-action .btn--primary.btn--download {
  border-radius: var(--radius);
  margin-top: 0;
}

.download-action .btn--primary.btn--download + .btn--manage {
  margin-top: 8px;
  border-radius: var(--radius);
}

.download-action .download-status:not([hidden]) + .btn--primary.btn--download {
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 0;
}

.download-install-link {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 8px 0;
  background: transparent;
  border: none;
  color: #3273dc;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}

.download-install-link:hover {
  text-decoration: underline;
}

.download-install-link__icon {
  font-size: 0.85em;
}

.kv {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
}
.kv:last-child {
  border-bottom: none;
}
.kv span:first-child {
  color: var(--muted);
}

/* ---------- Reviews ---------- */
.review {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__inner {
  display: grid;
  gap: 24px;
  text-align: center;
}
.footer__tagline {
  margin: 0;
  font-weight: 500;
}
.footer__copy {
  margin: 6px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.footer__nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__nav a:hover {
  color: var(--cyan);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer__contact a {
  color: var(--muted-2);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer__contact a:hover {
  color: var(--cyan);
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__social-link:hover {
  color: var(--text);
  border-color: rgba(0, 212, 255, 0.45);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.footer__social-link--instagram:hover {
  color: #e4405f;
  border-color: rgba(228, 64, 95, 0.45);
}
.footer__social-link--youtube:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.45);
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.whatsapp-fab:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.whatsapp-fab:active {
  transform: scale(0.98);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* ---------- Static pages (Sobre, Contato) ---------- */
.static-page {
  margin-top: 28px;
  max-width: 960px;
}
.static-page__header {
  margin-bottom: 32px;
}
.static-page__header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.static-page__header p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.static-page__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}
.static-page__card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.static-page__card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.static-page__card p:last-child {
  margin-bottom: 0;
}
.static-page__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}
.static-page__list li {
  margin-bottom: 8px;
}
.static-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.static-page__grid {
  display: grid;
  gap: 18px;
}
.static-page__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}
.static-page__channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.static-page__channel:hover {
  border-color: var(--cyan);
  background: rgba(56, 189, 248, 0.04);
}
.static-page__channel--whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}
.static-page__channel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}
.static-page__channel-value {
  color: var(--text);
  font-weight: 600;
  word-break: break-all;
}
.static-page__hours {
  font-size: 0.88rem !important;
  margin-top: 8px !important;
}
.static-page__textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.static-page__form-note {
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  color: var(--muted-2) !important;
  line-height: 1.5 !important;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr auto auto;
    text-align: left;
    align-items: start;
  }
  .footer__contact {
    align-items: flex-end;
    text-align: right;
  }
  .footer__social {
    justify-content: flex-start;
  }
  .static-page__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
  .static-page__header h1 {
    font-size: 2.4rem;
  }
}

.section-title-link {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- User dashboard ---------- */
.dash {
  margin-top: 28px;
}
.dash__header {
  margin-bottom: 28px;
}
.dash__header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash__header p {
  color: var(--muted);
  margin-top: 6px;
}
.dash__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.dash__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.dash__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}
.dash__stat-lbl {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.dash__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.dash__panel h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.dash__list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: opacity 0.18s;
}
.dash__list-item:last-child {
  border-bottom: none;
}
.dash__list-item:hover {
  opacity: 0.85;
}
.dash__list-item img,
.dash__list-item .ph {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.dash__list-item .ph {
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  color: var(--violet);
  font-weight: 800;
}
.dash__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.dash__tab {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.18s;
}
.dash__tab--active {
  background: var(--grad-soft);
  border-color: rgba(108, 60, 233, 0.4);
  color: var(--text);
}
.settings-form {
  max-width: 480px;
}
.settings-form .field {
  margin-bottom: 16px;
}

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

@media (max-width: 820px) {
  .detail__grid {
    grid-template-columns: 1fr;
  }
  .detail__grid > div:last-child {
    order: -1;
  }
  .detail__grid .side-card {
    position: static !important;
    top: auto !important;
  }
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    height: auto;
    min-height: 68px;
    padding-block: 12px;
    gap: 10px 12px;
  }
  .nav__logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .nav__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }
  .nav__search {
    grid-column: 1 / -1;
    grid-row: 2;
    order: unset;
    flex: unset;
    max-width: none;
    width: 100%;
  }
  .nav__spacer {
    display: none;
  }
  .hero {
    padding: 38px 24px;
  }
  .detail__head {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -40px;
    padding-inline: 16px;
    gap: 14px;
  }
  .detail__icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }
  .detail__title h1 {
    font-size: 1.55rem;
  }
  .detail__stats {
    padding-inline: 16px !important;
    gap: 16px;
    justify-content: space-between;
  }
  .detail__grid {
    padding-inline: 16px !important;
    gap: 24px;
  }
  .detail__banner {
    height: 180px;
    border-radius: var(--radius);
    margin-top: 16px;
  }
  .shots img {
    height: 260px;
  }
  .spotlight {
    grid-template-columns: 1fr;
  }
  .section {
    margin-top: 36px;
  }
  .section__head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer {
    margin-top: 48px;
    padding: 28px 0;
  }
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-fab svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 540px) {
  .container {
    padding-inline: 14px;
  }
  .nav__logo-img {
    height: 36px;
    max-width: 120px;
  }
  .nav__actions {
    gap: 6px;
  }
  .nav__actions .btn {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
  .nav__actions .btn--primary {
    padding: 9px 16px;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
  }
  .card {
    padding: 14px;
  }
  .card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
  .card__name {
    font-size: 0.92rem;
  }
  .hero {
    padding: 28px 18px;
    min-height: 220px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .detail__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat {
    text-align: left;
  }
  .stat__num {
    font-size: 1.1rem;
  }
  .dash__header h1 {
    font-size: 1.5rem;
  }
  .dash__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn--lg {
    padding: 13px 20px;
    font-size: 0.98rem;
  }
  .btn--downloading {
    font-size: 0.92rem;
  }
}
