:root {
  --bg: #07150f;
  --panel: rgba(8, 33, 24, 0.76);
  --panel-strong: rgba(4, 18, 13, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-green: rgba(42, 172, 116, 0.36);
  --text: #f8fff9;
  --muted: rgba(248, 255, 249, 0.72);
  --soft: rgba(248, 255, 249, 0.54);
  --green: #19a873;
  --green-dark: #0f5b40;
  --lime: #83e0a0;
  --gold: #d6a23a;
  --orange: #d6a23a;
  --danger: #ff4f3f;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 168, 115, 0.18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(214, 162, 58, 0.12), transparent 28%),
    linear-gradient(180deg, #04100b 0%, var(--bg) 42%, #0f261a 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 18, 13, 0.76);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
}

.brand span {
  display: block;
  font-size: 15px;
}

.brand small {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav .hide-sm {
  display: inline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #04140c;
  background: linear-gradient(135deg, var(--gold), #ffe06a);
  box-shadow: 0 16px 36px rgba(255, 196, 0, 0.22);
  font: 900 14px/1 var(--font);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(255, 196, 0, 0.28);
}

.button.green {
  color: #f8fff9;
  background: linear-gradient(135deg, #0f5b40, #19a873);
  box-shadow: 0 16px 36px rgba(25, 168, 115, 0.28);
}

.button.ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 118px 0 44px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.03);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 13, 0.95) 0%, rgba(8, 33, 24, 0.78) 36%, rgba(25, 168, 115, 0.18) 68%),
    linear-gradient(180deg, rgba(4, 18, 13, 0.34) 0%, rgba(8, 33, 24, 0.42) 46%, #07150f 98%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.accent {
  color: var(--gold);
}

.hero-copy {
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 26px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(8, 33, 24, 0.68);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.feature-pill svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check {
  color: var(--green);
  font-weight: 900;
}

.offer-card {
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(25, 168, 115, 0.16), rgba(8, 33, 24, 0.82) 42%),
    rgba(0, 0, 0, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.offer-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.offer-card p {
  color: var(--muted);
  font-weight: 650;
}

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

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

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

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

.pain-card {
  position: relative;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 79, 63, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024));
  overflow: hidden;
}

.pain-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 79, 63, 0.12);
  color: #ff6b5d;
  font-size: 13px;
  font-weight: 900;
}

.pain-card h3 {
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
}

.pain-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.solution-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(214, 162, 58, 0.26);
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 0%, rgba(214, 162, 58, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(214, 162, 58, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(214, 162, 58, 0.15);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.solution-card h3 {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.solution-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.solution-card small {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(214, 162, 58, 0.13);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.demo-guide {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 162, 58, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.demo-login-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.login-card {
  border: 1px solid rgba(214, 162, 58, 0.28);
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(214, 162, 58, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.login-role {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 196, 0, 0.13);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.credential {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 0;
  margin-top: 10px;
}

.credential span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.credential strong {
  color: white;
  font-size: 15px;
  font-weight: 900;
  word-break: break-word;
}

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

.tour-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.tour-card.highlight {
  border-color: rgba(255, 196, 0, 0.34);
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.13), rgba(255, 255, 255, 0.035));
}

.tour-step {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(22, 199, 106, 0.14);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.tour-card.highlight .tour-step {
  background: rgba(255, 196, 0, 0.14);
  color: var(--gold);
}

.tour-card h3 {
  font-size: 20px;
  line-height: 1.08;
  font-weight: 900;
}

.tour-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.tour-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 251, 248, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.tour-card li {
  position: relative;
  padding-left: 17px;
}

.tour-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.tour-card.highlight li::before {
  background: var(--gold);
}

.digital-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 196, 0, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(214, 162, 58, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.digital-flow-copy h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.digital-flow-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

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

.flow-steps div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.flow-steps b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 11px;
  background: rgba(255, 196, 0, 0.14);
  color: var(--gold);
  font-size: 13px;
}

.flow-steps span {
  display: block;
  color: white;
  font-weight: 900;
}

.flow-steps small {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pillar-grid,
.manual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.pillar-card {
  border: 1px solid rgba(214, 162, 58, 0.28);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 162, 58, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
}

.pillar-card .kicker {
  display: inline-flex;
  margin-bottom: 13px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(214, 162, 58, 0.13);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-card h3 {
  font-size: 23px;
  line-height: 1.05;
  font-weight: 900;
}

.pillar-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.manual-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(214, 162, 58, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006));
}

.manual-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 162, 58, 0.32);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 162, 58, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(8, 33, 24, 0.74), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.manual-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manual-summary h3 {
  max-width: 720px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.manual-summary p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.manual-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.manual-step {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.manual-step b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(214, 162, 58, 0.15);
  color: var(--gold);
  font-size: 14px;
}

.manual-step h3 {
  font-size: 19px;
  line-height: 1.08;
  font-weight: 900;
}

.manual-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.manual-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.manual-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  color: white;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.manual-card summary::-webkit-details-marker {
  display: none;
}

.manual-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 999px;
  background: rgba(214, 162, 58, 0.14);
  color: var(--gold);
}

.manual-card[open] summary::after {
  content: "-";
}

.manual-content {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.manual-content ol,
.manual-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.manual-note {
  margin-top: 18px;
  border: 1px solid rgba(214, 162, 58, 0.34);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(214, 162, 58, 0.13), rgba(255, 255, 255, 0.035));
  color: var(--muted);
  font-weight: 700;
}

.card {
  position: relative;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(214, 162, 58, 0.13);
  filter: blur(10px);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 196, 0, 0.12);
  color: var(--gold);
}

.icon svg {
  width: 25px;
  height: 25px;
}

.card h3 {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 900;
}

.card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(70px, 0.15fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.compare-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.compare-panel.after {
  border-color: rgba(214, 162, 58, 0.4);
  background: linear-gradient(145deg, rgba(214, 162, 58, 0.12), rgba(255, 255, 255, 0.04));
}

.compare-panel h3 {
  color: var(--danger);
  font-size: 24px;
  font-weight: 900;
}

.compare-panel.after h3 {
  color: var(--green);
}

.compare-panel ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 750;
}

.arrow {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
}

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

.price-card {
  border: 1px solid rgba(255, 196, 0, 0.28);
  border-radius: 28px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.04));
}

.price-card h3 {
  font-size: 26px;
  font-weight: 900;
}

.price-card p {
  margin-top: 9px;
  color: var(--muted);
  font-weight: 650;
}

.screens {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.screen-shot {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #020806;
  box-shadow: var(--shadow);
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
}

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

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.final {
  padding: 82px 0;
}

.final-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(214, 162, 58, 0.34);
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 196, 0, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(214, 162, 58, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.final-box p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}

.float-wa svg {
  width: 31px;
  height: 31px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav .hide-sm {
    display: none;
  }

  .hero-grid,
  .screens,
  .final-box {
    grid-template-columns: 1fr;
  }

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

  .pain-grid,
  .solution-grid,
  .demo-login-grid,
  .tour-grid,
  .manual-flow,
  .pillar-grid,
  .manual-grid,
  .digital-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .digital-flow {
    grid-template-columns: 1fr;
  }

  .manual-summary {
    grid-template-columns: 1fr;
  }

  .offer-card {
    max-width: 520px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(3, 8, 6, 0.42) 0%, rgba(3, 8, 6, 0.76) 42%, #07100c 96%),
      linear-gradient(90deg, rgba(3, 8, 6, 0.82), rgba(3, 8, 6, 0.42));
  }
}

@media (max-width: 720px) {
  .shell {
    width: 100%;
    padding: 0 16px;
  }

  .topbar-inner {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand span,
  .nav a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .feature-pill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cards,
  .pain-grid,
  .solution-grid,
  .demo-login-grid,
  .tour-grid,
  .manual-flow,
  .pillar-grid,
  .manual-grid,
  .flow-steps,
  .pricing,
  .compare {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .manual-summary {
    padding: 22px;
  }

  .manual-summary .button {
    width: 100%;
  }

  .manual-step {
    min-height: auto;
  }

  .arrow {
    transform: rotate(90deg);
    min-height: 40px;
    margin: 10px auto;
  }

  .section {
    padding: 48px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
