/* =========================================================
   GS Barber Pro — Landing Page
   Empresa: GSYNTRA Tecnologia
   Objetivo: página comercial separada do sistema interno.
   ========================================================= */

/* Reset simples para evitar diferenças entre navegadores */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis principais da identidade visual */
:root {
  --bg: #05070d;
  --bg-soft: #0b1020;
  --card: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --muted: #9ca3af;
  --gold: #d4a45d;
  --gold-dark: #a87738;
  --radius-xl: 30px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 164, 93, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(87, 110, 255, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Marca d’água discreta da GSYNTRA no fundo */
.watermark {
  position: fixed;
  inset: 0;
  background: url('../img/marca-dagua.png') center center no-repeat;
  background-size: min(760px, 85vw);
  opacity: 0.035;
  pointer-events: none;
  z-index: -1;
}

/* Cabeçalho fixo */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  padding: 18px clamp(22px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(5, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(22px);
  z-index: 10;
}

.brand__logo {
  height: 48px;
  width: auto;
  display: block;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

/* Botões reutilizáveis */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  color: #111827;
  background: linear-gradient(135deg, #f0c878, var(--gold), var(--gold-dark));
  box-shadow: 0 16px 38px rgba(212, 164, 93, 0.22);
}

.btn--secondary {
  color: var(--text);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.045);
}

.btn--secondary:hover {
  border-color: rgba(212, 164, 93, 0.42);
}

.btn--large {
  min-height: 56px;
  padding: 0 30px;
}

/* Hero principal */
.hero {
  min-height: 100vh;
  padding: 160px clamp(22px, 5vw, 82px) 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 9px 16px;
  color: var(--gold);
  background: rgba(212, 164, 93, 0.1);
  border: 1px solid rgba(212, 164, 93, 0.22);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

.hero__text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__proof span {
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Mockup visual do dashboard */
.hero__visual {
  position: relative;
}

.app-preview {
  width: 100%;
  max-width: 620px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--card-border);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.app-preview__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.preview-label {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.status-pill {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-card strong {
  display: block;
  font-size: 1.65rem;
  margin: 8px 0 2px;
}

.schedule-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-row {
  display: grid;
  grid-template-columns: 70px 1fr 92px;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row span {
  color: var(--gold);
  font-weight: 800;
}

.schedule-row small {
  color: var(--muted);
  text-align: right;
}

/* Seções gerais */
.section {
  padding: 110px clamp(22px, 5vw, 82px);
}

.section__heading {
  max-width: 880px;
  margin: 0 auto 62px;
  text-align: center;
}

.section__heading--left {
  margin-left: 0;
  text-align: left;
}

.section__heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.section__heading p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* Cards de recursos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.price-card,
.faq-list details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
}

.feature-card {
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 164, 93, 0.28);
}

.feature-icon {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.86rem;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.25rem;
}

.feature-card p,
.price-card__desc,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
}

/* Demonstração visual */
.demo {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 42px;
}

.demo-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 164, 93, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-panel__mockup {
  flex: 1;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
}

.demo-panel__side,
.demo-panel__main,
.demo-window,
.demo-chart,
.demo-list span,
.demo-stats article {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.demo-panel__side {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.demo-panel__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f2cf7a, #a87428);
  color: #09090b;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 18px 40px rgba(212, 164, 93, 0.22);
}

.demo-panel__side span {
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-panel__side span.is-active {
  background: linear-gradient(135deg, rgba(212, 164, 93, 0.42), rgba(255, 255, 255, 0.08));
}

.demo-panel__main {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-window {
  padding: 18px;
  background: rgba(5, 7, 13, 0.42);
}

.demo-window__bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.demo-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.demo-window__content {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 18px;
}

.demo-chart {
  min-height: 230px;
  padding: 22px;
  background:
    radial-gradient(circle at 72% 26%, rgba(212, 164, 93, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(212, 164, 93, 0.20), rgba(255, 255, 255, 0.045));
  position: relative;
  overflow: hidden;
}

.demo-chart::after {
  content: "";
  position: absolute;
  inset: auto 20px 18px 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.demo-chart__headline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-chart__headline small,
.demo-stats small,
.demo-stats span {
  color: var(--muted);
}

.demo-chart__headline strong {
  font-size: 2rem;
}

.demo-bars {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 95px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.demo-bars span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #f2cf7a, rgba(212, 164, 93, 0.18));
  box-shadow: 0 10px 22px rgba(212, 164, 93, 0.16);
}

.demo-stats {
  display: grid;
  gap: 12px;
}

.demo-stats article {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.demo-stats strong {
  font-size: 1.55rem;
}

.demo-list {
  display: grid;
  gap: 12px;
}

.demo-list span {
  height: 52px;
  background: rgba(255, 255, 255, 0.045);
}

.demo-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.demo-actions .btn {
  min-width: 210px;
  justify-content: center;
}

/* Planos */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card--featured {
  border-color: rgba(212, 164, 93, 0.65);
  box-shadow: 0 24px 70px rgba(212, 164, 93, 0.12);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 900;
}

.price-card h3 {
  font-size: 1.55rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 10px 0 16px;
  flex: 1;
}

.price-card li {
  color: #d1d5db;
}

.price-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 14px;
}

/* CTA final */
.cta {
  margin: 70px clamp(22px, 5vw, 82px);
  padding: clamp(50px, 7vw, 90px);
  text-align: center;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(212, 164, 93, 0.18), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(212, 164, 93, 0.24);
}

.cta h2 {
  max-width: 960px;
  margin: 0 auto 32px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

/* Rodapé */
.footer {
  padding: 60px clamp(22px, 5vw, 82px);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  height: 46px;
  margin-bottom: 16px;
}

.footer p {
  color: var(--muted);
}

/* Responsividade para tablets e celulares */
@media (max-width: 1100px) {
  .hero,
  .demo,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .demo-panel__mockup,
  .demo-window__content {
    grid-template-columns: 1fr;
  }

  .demo-panel__side {
    display: none;
  }


  .nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 74px;
  }

  .brand__logo,
  .footer__logo {
    height: 38px;
  }

  .topbar > .btn {
    display: none;
  }

  .hero {
    padding-top: 125px;
  }

  .metrics-grid,
  .schedule-row,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .schedule-row small {
    text-align: left;
  }

  .demo-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .demo-panel {
    padding: 18px;
    min-height: auto;
  }

  .demo-chart {
    min-height: 220px;
  }

}

/* =========================================
   Comparativo comercial GS Barber Pro
========================================= */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.comparison-card {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.comparison-card.highlighted {
  background: linear-gradient(145deg, rgba(200,169,106,.18), rgba(255,255,255,.04));
  border-color: rgba(200,169,106,.35);
}

.comparison-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card li {
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.comparison-card.highlighted li::before {
  content: "✓ ";
  color: #c8a96a;
  font-weight: 800;
}

.comparison-card.muted li::before {
  content: "— ";
  color: rgba(255,255,255,.35);
}

@media (max-width: 860px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PATCH FINAL GSYNTRA — HERO E DEMONSTRAÇÃO PROPORCIONAIS
   Ajustes aplicados para evitar título estourado e padronizar
   o tamanho do quadro de demonstração com as demais ilustrações.
========================================================= */

/* Navbar com efeito premium sem pesar visualmente */
.topbar {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 7, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

/* HERO: reduz impacto exagerado, mantém hierarquia e evita estouro */
.hero {
  min-height: auto;
  padding-top: clamp(120px, 12vh, 150px);
  padding-bottom: clamp(72px, 9vh, 108px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 5vw, 72px);
  overflow: hidden;
}

.hero__content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(3.05rem, 5.45vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  max-width: 780px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero__text {
  max-width: 640px;
}

/* Prévia do dashboard do hero menor e proporcional */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-preview {
  width: min(100%, 560px);
  max-width: 560px;
  transform: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.46),
    0 0 80px rgba(212, 164, 93, 0.07);
}

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

.metric-card {
  min-height: 118px;
}

.schedule-card {
  max-height: 270px;
  overflow: hidden;
}

/* Seção demonstração: card menor, alinhado com o padrão visual do hero */
.demo {
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 62px);
}

.demo-panel {
  width: 100%;
  max-width: 580px;
  min-height: 0;
  padding: 26px;
  justify-self: center;
  border-radius: 32px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(212, 164, 93, 0.075);
}

.demo-panel__mockup {
  min-height: 360px;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
}

.demo-panel__side {
  padding: 16px;
  border-radius: 24px;
}

.demo-panel__logo {
  width: 66px;
  height: 66px;
  border-radius: 20px;
}

.demo-panel__side span {
  height: 38px;
  border-radius: 14px;
}

.demo-panel__main {
  padding: 18px;
  border-radius: 24px;
}

.demo-window {
  padding: 16px;
  border-radius: 22px;
}

.demo-window__content {
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
}

.demo-chart {
  min-height: 185px;
  padding: 18px;
}

.demo-chart__headline strong {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.demo-bars {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 72px;
  gap: 9px;
}

.demo-stats article {
  padding: 14px;
  border-radius: 20px;
}

.demo-stats strong {
  font-size: 1.25rem;
}

.demo-list span {
  height: 42px;
  border-radius: 16px;
}

.demo-actions {
  margin-top: 4px;
  gap: 18px;
  justify-content: center;
}

.demo-actions .btn {
  min-width: 210px;
  min-height: 52px;
}

/* Botões premium com feedback visual */
.btn,
.btn--primary,
.btn--secondary {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn--primary:hover,
.btn--secondary:hover {
  transform: translateY(-2px);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(212, 164, 93, 0.24);
}

/* Tablet: hero e demonstração viram coluna sem cortes */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 118px;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(2.75rem, 7vw, 4.7rem);
    line-height: 1.02;
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__proof {
    justify-content: center;
  }

  .app-preview {
    width: min(100%, 600px);
    max-width: 600px;
  }

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

  .section__heading--left {
    text-align: center;
    margin-inline: auto;
  }

  .demo-panel {
    max-width: 620px;
  }
}

/* Mobile: leitura clara, sem texto gigante ou componentes vazando */
@media (max-width: 720px) {
  .hero {
    padding: 104px 20px 64px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
    max-width: 11ch;
  }

  .hero__text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .app-preview {
    padding: 20px;
    border-radius: 28px;
  }

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

  .metric-card {
    min-height: 96px;
  }

  .schedule-row {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .schedule-row small {
    grid-column: 2;
  }

  .demo-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .demo-panel__mockup {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .demo-panel__side {
    display: none;
  }

  .demo-window__content {
    grid-template-columns: 1fr;
  }

  .demo-chart {
    min-height: 210px;
  }

  .demo-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero__proof span {
    width: 100%;
    text-align: center;
  }
}


/* Ajuste comercial GS Barber Pro: menos texto, cards proporcionais e visual mais limpo */
.hero{
  min-height:auto !important;
  padding-top:clamp(120px, 14vh, 150px) !important;
  padding-bottom:72px !important;
}

.hero h1{
  max-width:760px !important;
  font-size:clamp(2.35rem, 4.8vw, 4.55rem) !important;
  line-height:1.02 !important;
  letter-spacing:-.055em !important;
}

.hero__text{
  max-width:650px !important;
  font-size:1.05rem !important;
  line-height:1.65 !important;
}

.hero__proof{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
}

.hero__proof span{
  padding:8px 12px !important;
  border-radius:999px !important;
  border:1px solid rgba(241,199,102,.18) !important;
  background:rgba(241,199,102,.06) !important;
}

.section{
  padding:82px 0 !important;
}

.section__heading{
  max-width:760px !important;
  margin-bottom:34px !important;
}

.section__heading h2{
  font-size:clamp(1.8rem, 3.3vw, 3rem) !important;
  line-height:1.12 !important;
}

.section__heading p{
  font-size:1rem !important;
  line-height:1.65 !important;
}

.features-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:18px !important;
}

.feature-card{
  min-height:210px !important;
  padding:24px !important;
  border-radius:22px !important;
}

.feature-icon{
  margin-bottom:20px !important;
}

.feature-card h3{
  font-size:1.16rem !important;
  margin-bottom:10px !important;
}

.feature-card p{
  font-size:.94rem !important;
  line-height:1.55 !important;
}

.comparison-grid{
  gap:20px !important;
}

.comparison-card{
  padding:26px !important;
  border-radius:24px !important;
}

.comparison-card li{
  font-size:.96rem !important;
  line-height:1.55 !important;
}

.pricing-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:20px !important;
  align-items:stretch !important;
}

.price-card{
  min-height:100% !important;
  padding:26px !important;
  border-radius:24px !important;
}

.price-card h3{
  font-size:1.35rem !important;
}

.price-card__desc{
  min-height:48px !important;
  font-size:.95rem !important;
  line-height:1.5 !important;
}

.price{
  margin:18px 0 !important;
}

.price-card ul{
  gap:9px !important;
}

.price-card li{
  font-size:.94rem !important;
}

.demo-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  justify-content:center !important;
}

.footer{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:8px !important;
  text-align:center !important;
  color:var(--muted) !important;
}

.footer small{
  color:var(--muted-2) !important;
}

@media (max-width:980px){
  .features-grid,
  .pricing-grid{
    grid-template-columns:1fr !important;
  }

  .feature-card,
  .price-card{
    min-height:auto !important;
  }
}
