:root {
  --navy: #061a2e;
  --navy-2: #0a2947;
  --navy-3: #103c64;
  --ink: #0b2239;
  --text: #44566a;
  --muted: #75869a;
  --gold: #d7a53c;
  --gold-2: #f0c25f;
  --gold-soft: #f8efd9;
  --line: #dbe4ec;
  --soft: #f3f6f9;
  --white: #ffffff;
  --green: #149164;
  --shadow: 0 24px 70px rgba(5, 29, 50, 0.14);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  margin-top: -30px !important;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

main,
header,
section,
footer,
nav {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1210px, calc(100% - 40px));
  margin-inline: auto;
}

/* DECORATIVE GLOWS */
.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.18;
}

.page-glow-one {
  width: 480px;
  height: 480px;
  top: 180px;
  right: -180px;
  background: #c3912b;
}

.page-glow-two {
  width: 520px;
  height: 520px;
  top: 850px;
  left: -260px;
  background: #1a5e91;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  background: rgba(5, 23, 40, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 184px;
  height: 64px;
  object-fit: contain;
  border-radius: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #dce6ef;
  font-size: 14px;
  font-weight: 600;
}

.nav > a:not(.header-phone) {
  position: relative;
}

.nav > a:not(.header-phone)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.nav > a:not(.header-phone):hover::after {
  right: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--white);
  border: 1px solid rgba(241, 194, 95, 0.4);
  border-radius: 999px;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 5px rgba(240, 194, 95, 0.12);
}

.menu-toggle {
  display: none;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: 0.25s;
}

/* HERO */
.hero {
  position: relative;
  margin: 0;
  padding: 105px 0 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #031321 0%, #072743 55%, #0b3457 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to right, #000, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  top: -360px;
  right: -310px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(240, 194, 95, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(240, 194, 95, 0.025),
    0 0 0 160px rgba(240, 194, 95, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ad7b18;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 20px;
  color: var(--gold-2);
}

.hero-kicker span {
  width: 28px;
  height: 1px;
  background: var(--gold-2);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(30px, 3.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--gold-2);
  font-style: normal;
}

.hero-copy > p {
  max-width: 660px;
  margin: 27px 0 31px;
  color: #c7d4df;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: 0.25s;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  color: #132943;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 15px 32px rgba(214, 165, 60, 0.24);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-proof {
  display: flex;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  min-width: 135px;
  margin-right: 28px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div:last-child {
  margin: 0;
  border: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 21px;
}

.hero-proof span {
  margin-top: 2px;
  color: #9fb0bf;
  font-size: 11px;
}

.hero-product {
  position: relative;
  min-width: 0;
}

.product-halo {
  position: absolute;
  inset: 12% 8% -7%;
  background: radial-gradient(circle, rgba(240, 194, 95, 0.24), transparent 67%);
  filter: blur(20px);
}

.app-window {
  position: relative;
  padding: 8px;
  overflow: hidden;
  background: #09121b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.52);
}

.app-topbar {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  color: #9cadbb;
  font-size: 10px;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3a63e;
}

.window-controls i:nth-child(2) {
  background: #a6b4bf;
}

.window-controls i:nth-child(3) {
  background: #778899;
}

.app-window img {
  width: 100%;
  border-radius: 9px;
}

.metric-card {
  position: absolute;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(1, 14, 26, 0.3);
}

.metric-card small,
.metric-card strong {
  display: block;
}

.metric-card small {
  color: var(--muted);
  font-size: 10px;
}

.metric-card strong {
  font-size: 12px;
}

.metric-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: #a06f0d;
  font-weight: 900;
  background: var(--gold-soft);
  border-radius: 11px;
}

.metric-green {
  color: var(--green);
  background: #e5f4ee;
}

.metric-left {
  bottom: -25px;
  left: -32px;
}

.metric-right {
  top: -31px;
  right: -24px;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  background: rgba(3, 17, 30, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bottom > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bottom > div:last-child {
  border: 0;
}

.hero-bottom span {
  color: var(--gold-2);
  font-weight: 800;
}

.hero-bottom p {
  margin: 0;
  color: #aebdca;
  font-size: 12px;
}

.hero-bottom b {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 13px;
}

/* FEATURE STRIP */
.logo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #5d6f82;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.strip-grid i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* GLOBAL SECTIONS */
.section {
  padding: 110px 0;
}

.section-head {
  margin-bottom: 54px;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.section-head.centered {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 52px;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.module-intro h2,
.workflow-copy h2,
.contact-copy h2 {
  margin: 13px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.section-head p,
.module-intro > p,
.workflow-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
}

.section-head.centered p {
  margin: 18px auto 0;
}

.section-label.light {
  color: var(--gold-2);
}

/* SOLUTION */
.solution {
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 19px;
  transition: 0.3s;
}

.solution-card:hover {
  border-color: #bdcbd8;
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.solution-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #081f35, #0c3659);
  border: 0;
}

.solution-card.featured p {
  color: #c7d4df;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #b2bfca;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.35);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border-radius: 14px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #a16f0b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured .feature-icon {
  background: rgba(240, 194, 95, 0.14);
}

.featured .feature-icon svg {
  stroke: var(--gold-2);
}

.solution-card h3 {
  margin: 24px 0 9px;
  font-size: 20px;
}

.solution-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.mini-chart {
  height: 45px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 20px;
}

.mini-chart i {
  flex: 1;
  background: linear-gradient(var(--gold-2), var(--gold));
  border-radius: 5px 5px 1px 1px;
  opacity: 0.9;
}

.mini-chart i:nth-child(1) { height: 30%; }
.mini-chart i:nth-child(2) { height: 52%; }
.mini-chart i:nth-child(3) { height: 40%; }
.mini-chart i:nth-child(4) { height: 75%; }
.mini-chart i:nth-child(5) { height: 100%; }

/* MODULES */
.modules {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, #05192b, #0a2f50);
}

.modules::after {
  content: "";
  position: absolute;
  right: -250px;
  bottom: -350px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(240, 194, 95, 0.12);
  border-radius: 50%;
}

.module-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.67fr 1.33fr;
  gap: 75px;
}

.module-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.module-intro > p {
  margin: 20px 0 24px;
  color: #bdcad6;
}

.inline-link {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
}

.inline-link span {
  display: inline-block;
  margin-left: 7px;
  transition: 0.25s;
}

.inline-link:hover span {
  transform: translateX(5px);
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.module-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.25s;
}

.module-grid article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 194, 95, 0.3);
}

.module-grid article > span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
}

.module-grid h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.module-grid p {
  margin: 0;
  color: #aebdca;
  font-size: 12px;
}

/* SHOWCASE */
.showcase {
  background: var(--soft);
}

.showcase-wrap {
  display: grid;
  grid-template-columns: 235px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0e7ed;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.showcase-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.screen-tab {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 9px;
  padding: 14px;
  color: #65778a;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 11px;
  transition: 0.2s;
}

.screen-tab b {
  color: #a8b4bf;
  font-size: 10px;
}

.screen-tab span {
  font-size: 13px;
  font-weight: 700;
}

.screen-tab:hover,
.screen-tab.active {
  color: var(--ink);
  background: #eef3f7;
}

.screen-tab.active b {
  color: #aa7819;
}

.showcase-stage {
  min-width: 0;
  padding: 36px 36px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #071f35, #0a3152);
}

.stage-copy {
  max-width: 650px;
  margin-bottom: 25px;
  color: var(--white);
}

.stage-copy > span {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stage-copy h3 {
  margin: 8px 0 5px;
  font-family: Manrope, sans-serif;
  font-size: 31px;
}

.stage-copy p {
  margin: 0;
  color: #bdcad6;
  font-size: 14px;
}

.app-window-large {
  padding: 7px 7px 0;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* WORKFLOW */
.workflow {
  background: var(--white);
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.workflow-copy > p {
  margin: 20px 0 28px;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: 0.25s;
}

.workflow-steps > div:hover {
  border-color: #bfccd8;
  transform: translateX(5px);
}

.workflow-steps b {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #a3700e;
  font-size: 12px;
  background: var(--gold-soft);
  border-radius: 12px;
}

.workflow-steps span,
.workflow-steps strong {
  display: block;
}

.workflow-steps span {
  color: var(--text);
  font-size: 13px;
}

.workflow-steps strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}

/* CONTACT */
.contact {
  padding: 0 0 90px;
  background: var(--white);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 55px;
  padding: 58px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, #05192b, #0c385d);
  border-radius: 26px;
}

.contact-shell::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -110px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(240, 194, 95, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(240, 194, 95, 0.035);
}

.contact-copy,
.contact-box {
  position: relative;
  z-index: 1;
}

.contact-copy > p {
  margin-top: 17px;
  color: #bdcad6;
}

.contact-box {
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
}

.contact-box small {
  display: block;
  color: #aebdca;
}

.contact-box > a {
  display: block;
  margin: 4px 0 18px;
  font-family: Manrope, sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.contact-box > div {
  display: flex;
  gap: 10px;
}

.contact-box .btn {
  flex: 1;
  min-height: 48px;
  padding-inline: 16px;
}

/* FOOTER */
footer {
  padding: 48px 0 22px;
  color: #aebdca;
  background: #03111e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 60px;
}

.footer-brand img {
  width: 165px;
  border-radius: 10px;
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 20px;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #17a967;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* TABLET */
@media (max-width: 1020px) {
  .nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: #061a2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .section-head.split,
  .module-shell,
  .workflow-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-kicker,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-product {
    margin-top: 25px;
  }

  .metric-left {
    left: 12px;
  }

  .metric-right {
    right: 12px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-bottom > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-intro {
    position: static;
    max-width: 740px;
    margin: auto;
    text-align: center;
  }

  .showcase-wrap {
    grid-template-columns: 1fr;
  }

  .showcase-nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .screen-tab {
    min-width: 145px;
    flex: 0 0 auto;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-box {
    width: 100%;
    max-width: 520px;
    margin: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-brand img {
    margin: auto;
  }

  .footer-links {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1210px);
  }

  .nav-shell {
    height: 68px;
  }

  .brand img {
    width: 150px;
    height: 54px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    gap: 0;
  }

  .hero-proof div {
    min-width: 0;
    flex: 1;
    margin-right: 12px;
    padding-right: 12px;
  }

  .metric-card {
    display: none;
  }

  .hero-bottom {
    margin-top: 62px;
  }

  .strip-grid {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px;
    white-space: nowrap;
  }

  .section {
    padding: 78px 0;
  }

  .section-head h2,
  .module-intro h2,
  .workflow-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-head.split {
    gap: 20px;
  }

  .solution-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .module-grid article {
    padding: 19px;
  }

  .showcase-stage {
    padding: 24px 16px 0;
  }

  .stage-copy h3 {
    font-size: 26px;
  }

  .screen-tab {
    min-width: 132px;
    padding: 11px;
  }

  .workflow-grid {
    gap: 42px;
  }

  .contact {
    padding-bottom: 55px;
  }

  .contact-shell {
    gap: 35px;
    padding: 34px 22px;
  }

  .contact-box > a {
    font-size: 25px;
  }

  .contact-box > div {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}