/*
Theme Name: Meu Negócio no Controle
Theme URI: https://meunegocionocontrole.com.br/
Author: OpenAI + Jhonatan
Description: Landing page comercial do Meu Negócio no Controle com foco em conversão.
Version: 1.4
Text Domain: meu-negocio-no-controle
*/

:root {
  --bg: #07111f;
  --bg-2: #0d1b34;
  --panel: rgba(255,255,255,.08);
  --card: #ffffff;
  --card-soft: #f4f8ff;
  --text: #eaf2ff;
  --text-soft: #c4d5f2;
  --text-dark: #0c1930;
  --muted: #5d7392;
  --line: rgba(255,255,255,.10);
  --line-soft: #dce7f7;
  --primary: #d8ae5e;
  --primary-2: #f0cf84;
  --brand-blue: #0b2850;
  --brand-gold: #d8ae5e;
  --brand-gold-light: #f0cf84;
  --success: #17c27b;
  --shadow: 0 24px 60px rgba(5, 18, 35, .18);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.mnc-body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #f4f8ff;
  color: var(--text-dark);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,17,31,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0c2749, #163e72);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.brand strong {
  display: block;
  font-size: 17px;
  color: #fff;
}
.brand small {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: #e7efff;
  font-size: 14px;
}
.nav-cta, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold));
  color: #07111f;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(216,174,94,.28);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #12345f;
  border: 1px solid #dbe8fb;
  box-shadow: 0 14px 30px rgba(19,52,95,.10);
}
.hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(88,184,255,.18), transparent 25%),
    radial-gradient(circle at 95% 10%, rgba(47,125,246,.20), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0b1830 100%);
  color: var(--text);
  padding: 72px 0 68px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  color: #dce8ff;
  font-size: 13px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(23,194,123,.14);
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.grad {
  background: linear-gradient(135deg, #ffffff 0%, #f0cf84 38%, #d8ae5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0 0 26px;
  max-width: 700px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #d0def7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d7e6ff;
  line-height: 1.6;
}
.bullet-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(88,184,255,.16);
  color: #86c7ff;
  font-weight: 800;
  margin-top: 1px;
}
.hero-visual {
  position: relative;
}
.hero-screen {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 36px 80px rgba(0,0,0,.34);
}
.hero-screen img { width: 100%; height: auto; }
.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--text-dark);
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 250px;
}
.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.floating-card span {
  color: #4f6686;
  font-size: 13px;
  line-height: 1.5;
}
.floating-1 { right: -8px; top: 24px; }
.floating-2 { left: -10px; bottom: 26px; }

.stats-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 18px;
}
.stat-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}
.stat-card span {
  display: block;
  color: #c6d7f6;
  line-height: 1.55;
  font-size: 14px;
}

.section {
  padding: 78px 0;
}
.section h2 {
  margin: 0 0 14px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text-dark);
}
.section .section-lead {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.section-dark {
  background: linear-gradient(180deg, #081325 0%, #0c1d37 100%);
  color: #fff;
}
.section-dark h2,
.section-dark h3,
.section-dark .section-title,
.section-dark .section-lead,
.section-dark .list-item,
.section-dark .faq-answer,
.section-dark p {
  color: #fff;
}
.section-dark .section-lead,
.section-dark p,
.section-dark .muted-light {
  color: #d0def6 !important;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.chip {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbe7fb;
  color: #1d3352;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(19,51,98,.06);
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e0eafb;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(18,50,95,.06);
}
.feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text-dark);
}
.feature p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}
.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(216,174,94,.18), rgba(240,207,132,.22));
  color: #9c6b12;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.gallery-card {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22,54,98,.08);
}
.gallery-card img { width: 100%; }
.gallery-body {
  padding: 18px 20px 22px;
}
.gallery-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text-dark);
}
.gallery-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}
.card-soft {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(22,54,98,.08);
}
.card-soft h3 {
  margin: 0 0 14px;
  font-size: 28px;
}
.card-soft p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.72;
}
.preview-box {
  background: #fff;
  border: 1px solid #dce7f8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(16,47,89,.12);
}
.preview-box img { width: 100%; }
.preview-body {
  padding: 18px 20px 22px;
}
.pricing-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(135deg, #081325 0%, #10284a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 36px 90px rgba(7,18,36,.26);
}
.price-card .badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.price-card h3 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #fff;
}
.price {
  font-size: clamp(56px, 6vw, 82px);
  line-height: 1;
  font-weight: 900;
  margin: 8px 0 8px;
}
.price-sub {
  color: var(--brand-gold-light);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.price-card p {
  color: #d6e4ff;
  line-height: 1.75;
}
.kicker-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}
.kicker {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
}
.side-note {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(22,54,98,.08);
}
.side-note h3 {
  margin: 0 0 14px;
  font-size: 30px;
}
.side-note p, .side-note li {
  color: var(--muted);
  line-height: 1.72;
}
.side-note ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.faq-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 24px;
}
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 21px;
  color: #fff;
}
.faq-answer {
  margin: 0;
  line-height: 1.72;
  color: #d0def6;
}
.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #081325 0%, #0f2340 60%, #143567 100%);
  color: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 34px 80px rgba(8,21,40,.22);
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(216,174,94,.30), transparent 68%);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #d9e6ff; line-height: 1.75; font-size: 18px; }
.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: 24px;
}
.contact-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.contact-item:last-child { border-bottom: 0; }
.contact-label {
  display: block;
  font-size: 12px;
  color: #a9c0e7;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
footer.mnc-footer {
  background: #07111f;
  color: #d7e6ff;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-row small { color: #9eb6d7; }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .pricing-wrap,
  .cta-grid,
  .features,
  .faq-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .floating-card { position: static; margin-top: 14px; max-width: none; }
  .nav { flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .hero, .section { padding: 58px 0; }
  .cta-box { padding: 28px; }
  .price { font-size: 56px; }
}


.real-gallery-wrap {
  margin-top: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.proof-card {
  background: linear-gradient(135deg, #081325 0%, #10284a 100%);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 75px rgba(7,18,36,.22);
}
.proof-card .overline {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.proof-number {
  font-size: clamp(52px, 7vw, 86px);
  line-height: .95;
  font-weight: 900;
  margin: 0 0 12px;
}
.proof-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  color: #fff;
}
.proof-card p {
  color: #d7e6ff;
  line-height: 1.75;
  margin: 0 0 16px;
}
.proof-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}
.proof-point {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 700;
}
.real-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.real-shot {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22,54,98,.08);
}
.real-shot img { width: 100%; }
.real-shot-body { padding: 18px 20px 22px; }
.real-shot-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text-dark);
}
.real-shot-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.real-shot.full-span { grid-column: 1 / -1; }
@media (max-width: 960px) {
  .real-gallery-wrap, .real-gallery-grid { grid-template-columns: 1fr; }
  .real-shot.full-span { grid-column: auto; }
}


.story-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  margin-top: 34px;
  align-items: stretch;
}
.story-card {
  background: linear-gradient(135deg, #081325 0%, #10284a 100%);
  color: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 75px rgba(7,18,36,.22);
}
.story-card .overline {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.story-card h3 {
  margin: 0 0 14px;
  font-size: 32px;
  color: #fff;
}
.story-card p {
  margin: 0 0 14px;
  color: #d7e6ff;
  line-height: 1.78;
}
.story-side {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(22,54,98,.08);
}
.story-side h3 {
  margin: 0 0 14px;
  font-size: 28px;
  color: var(--text-dark);
}
.story-side p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.resource-card {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(18,50,95,.06);
}
.resource-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--text-dark);
}
.resource-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
}
.resource-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.resource-card li {
  color: #405776;
  line-height: 1.62;
}
@media (max-width: 960px) {
  .story-wrap,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes da nova marca: Meu Negócio no Controle */
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  background: #07111f;
  box-shadow: 0 12px 28px rgba(0,0,0,.26);
  border: 1px solid rgba(240,207,132,.22);
}
.logo-showcase {
  margin: 30px auto 0;
  max-width: 430px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(216,174,94,.20);
  box-shadow: 0 34px 80px rgba(7,18,36,.22);
}
.logo-showcase img { width: 100%; height: auto; display: block; }
.hero-screen.logo-hero { background: radial-gradient(circle at 50% 30%, rgba(216,174,94,.18), transparent 40%), #07111f; }
.gallery-card img,
.preview-box img,
.real-shot img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #07111f;
}
.hero-screen.logo-hero img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Versão enxuta focada em conversão */
.compact-gallery { grid-template-columns: repeat(3, 1fr); }
.bullet-dark li { color: #405776 !important; }
.bullet-dark li::before { background: rgba(216,174,94,.18); color: #9c6b12; }
.section-story { background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%); }
.nav-links { gap: 18px; }
.nav-links a { white-space: nowrap; }
@media (max-width: 1100px) {
  .compact-gallery { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 720px) {
  .compact-gallery { grid-template-columns: 1fr; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
}


/* Seções com prints reais do sistema e documentos */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(216,174,94,.14);
  border: 1px solid rgba(216,174,94,.22);
  color: #9c6b12;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.screen-showcase {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.screen-feature,
.document-card {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(22,54,98,.10);
}
.screen-image {
  background:
    radial-gradient(circle at 15% 10%, rgba(216,174,94,.13), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #0d2345 100%);
  padding: 14px;
}
.screen-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  background: #f8fbff;
}
.wide-screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}
.screen-content,
.document-body {
  padding: 22px 24px 26px;
}
.screen-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf4ff;
  color: #17529a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.screen-content h3,
.document-body h3 {
  margin: 0 0 10px;
  font-size: 25px;
  color: var(--text-dark);
}
.screen-content p,
.document-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.documents-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.documents-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.documents-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.document-preview {
  padding: 22px;
  background:
    radial-gradient(circle at 80% 0%, rgba(216,174,94,.18), transparent 24%),
    linear-gradient(135deg, #081325 0%, #10284a 100%);
  min-height: 520px;
  display: grid;
  place-items: center;
}
.document-preview img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  background: #fff;
}
.proof-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-strip div {
  background: #fff;
  border: 1px solid #dde8fa;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 46px rgba(22,54,98,.07);
}
.proof-strip strong {
  display: block;
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 8px;
}
.proof-strip span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
@media (max-width: 980px) {
  .screen-showcase,
  .documents-grid,
  .documents-head,
  .proof-strip { grid-template-columns: 1fr; }
  .document-preview { min-height: auto; }
  .document-preview img { max-height: 640px; }
}
@media (max-width: 620px) {
  .screen-image { padding: 10px; }
  .screen-content, .document-body { padding: 18px; }
  .wide-screen img { aspect-ratio: 4 / 3; }
  .document-preview { padding: 14px; }
}
