:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #13203f;
  --text: #14213d;
  --muted: #5f6b88;
  --line: rgba(96, 109, 146, 0.2);
  --purple: #6a31f4;
  --purple-deep: #4f24bd;
  --green: #1ac98b;
  --green-deep: #10996a;
  --navy: #1c2c58;
  --shadow: 0 24px 60px rgba(27, 41, 73, 0.12);
  --shadow-strong: 0 28px 80px rgba(66, 45, 159, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 49, 244, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(26, 201, 139, 0.14), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #eef4fb 42%, #f6f8fc 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 128, 174, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 128, 174, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 86%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(221, 233, 252, 0.45));
  border-top: 1px solid rgba(121, 136, 180, 0.16);
  border-bottom: 1px solid rgba(121, 136, 180, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(117, 131, 172, 0.12);
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand img {
  width: clamp(132px, 16vw, 188px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .button::after,
.button::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(96, 109, 146, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.8rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--green));
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 34px rgba(80, 63, 187, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(80, 63, 187, 0.22);
  filter: saturate(1.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(96, 109, 146, 0.18);
  box-shadow: none;
}

.button-nav {
  min-height: 42px;
  padding-inline: 1rem;
  color: #ffffff !important;
}

.button-nav:hover,
.button-nav:focus-visible,
.site-nav .button-nav,
.site-nav .button-nav:hover,
.site-nav .button-nav:focus-visible {
  color: #ffffff !important;
}

.button-block {
  width: 100%;
}

.site-main {
  overflow: hidden;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
}

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

.split-grid-balanced {
  align-items: stretch;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand-text {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.96;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

p,
li,
label span,
.tiny-label,
.price-tag {
  color: var(--muted);
  line-height: 1.75;
}

.lede {
  max-width: 64ch;
  font-size: 1.08rem;
}

.product-subnote {
  max-width: 58ch;
  margin-top: 1rem;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h1 {
  margin-bottom: 1rem;
}

.section-heading p {
  margin: 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(98, 112, 150, 0.16);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -55% auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(106, 49, 244, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-metrics,
.cards-grid,
.process-grid,
.sector-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1.3rem;
}

.hero-metrics {
  margin-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics-product {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero-metrics-full {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.cards-grid-large {
  grid-template-columns: 1.25fr 1fr 1fr;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-plan {
  padding: 1.45rem;
  background: rgba(249, 252, 255, 0.92);
}

.pricing-plan__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.pricing-plan__top h2,
.pricing-plan__top h3 {
  margin: 0;
  font-size: 1.5rem;
}

.pricing-plan__price {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.pricing-plan__price span {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.pricing-plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(16, 153, 106, 0.22);
}

.pricing-plan__cta--green {
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  box-shadow: 0 18px 32px rgba(16, 153, 106, 0.22);
}

.pricing-plan__cta--purple {
  background: linear-gradient(180deg, var(--purple), var(--purple-deep));
  box-shadow: 0 18px 32px rgba(79, 36, 189, 0.24);
}

.pricing-plan__divider {
  margin: 1.55rem 0;
  border-top: 2px dotted rgba(96, 109, 146, 0.18);
}

.pricing-plan__label {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.mini-card,
.feature-card,
.step-card,
.sector-card,
.pricing-card,
.contact-card {
  padding: 1.55rem;
}

.mini-card {
  border: 1px solid rgba(98, 112, 150, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(27, 41, 73, 0.08);
}

.mini-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.feature-card-primary,
.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(106, 49, 244, 0.12), rgba(26, 201, 139, 0.08)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-strong);
}

.feature-label {
  margin: 0 0 0.8rem;
  color: var(--green-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.feature-card h2,
.pricing-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.screenshot-card {
  margin: 0;
  padding: 1rem;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(96, 109, 146, 0.14);
  background: #ffffff;
  cursor: zoom-in;
}

.screenshot-card-featured {
  grid-column: 1 / -1;
}

.screenshot-card-featured img {
  aspect-ratio: 16 / 8;
}

.screenshot-card figcaption {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.screenshot-card figcaption strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 109, 146, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-weight: 700;
}

.badge-live {
  background: rgba(26, 201, 139, 0.15);
  color: var(--green-deep);
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
}

.hero-proof-card {
  padding: 1.4rem;
}

.hero-proof-frame {
  margin-top: 1.2rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(97, 111, 150, 0.14);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 22px 50px rgba(27, 41, 73, 0.12);
}

.hero-proof-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(11, 18, 38, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
}

.lightbox__close {
  position: absolute;
  top: -0.75rem;
  right: 0;
  z-index: 1;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(11, 18, 38, 0.18);
  cursor: pointer;
}

.lightbox__frame {
  margin: 0;
  padding: 0.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(11, 18, 38, 0.24);
}

.lightbox__image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.lightbox__caption {
  margin-top: 0.85rem;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.dashboard-card {
  padding: 1.4rem;
  min-height: 580px;
  overflow: hidden;
}

.dashboard-top,
.stat-grid,
.signal-card,
.statement,
.footer-grid,
.footer-bottom {
  display: flex;
  gap: 1rem;
}

.dashboard-top,
.footer-bottom {
  justify-content: space-between;
  align-items: center;
}

.visual-brand {
  margin: 1.3rem 0;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(106, 49, 244, 0.1), rgba(26, 201, 139, 0.1));
  border: 1px solid rgba(97, 111, 150, 0.14);
}

.visual-brand img {
  margin: 0 auto;
  max-width: 320px;
}

.stat-grid {
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 220px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(96, 109, 146, 0.14);
}

.stat-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 800;
}

.signal-card {
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(19, 32, 63, 0.96);
  color: #ffffff;
}

.signal-card p,
.signal-card strong {
  color: #ffffff;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(4, 10px);
  align-items: end;
  gap: 0.45rem;
}

.signal-bars span {
  border-radius: 999px;
  background: linear-gradient(180deg, #8c6aff, #3ef0b6);
  animation: pulse-bars 1.8s ease-in-out infinite;
}

.signal-bars span:nth-child(1) {
  height: 18px;
}

.signal-bars span:nth-child(2) {
  height: 28px;
  animation-delay: 0.15s;
}

.signal-bars span:nth-child(3) {
  height: 38px;
  animation-delay: 0.3s;
}

.signal-bars span:nth-child(4) {
  height: 50px;
  animation-delay: 0.45s;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(106, 49, 244, 0.1);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-accent {
  background: rgba(26, 201, 139, 0.15);
  color: var(--green-deep);
}

.pill-success {
  background: linear-gradient(135deg, var(--purple), var(--green));
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(79, 36, 189, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-tag {
  position: absolute;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(96, 109, 146, 0.12);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 800;
  animation: drift 5.5s ease-in-out infinite;
}

.floating-tag-top {
  top: 78px;
  right: 18px;
}

.floating-tag-bottom {
  bottom: 18px;
  left: 18px;
  animation-delay: 0.8s;
}

.statement {
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.statement-copy,
.statement-list {
  flex: 1 1 0;
}

.statement-list {
  display: grid;
  gap: 1rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  color: var(--green-deep);
}

.price-tag {
  margin: 0.4rem 0 1rem;
  color: var(--purple);
  font-weight: 800;
}

.center-cta {
  margin-top: 2rem;
  text-align: center;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(106, 49, 244, 0.1), rgba(26, 201, 139, 0.1)),
    rgba(255, 255, 255, 0.92);
}

.split-grid > .panel,
.faq-grid > .panel {
  padding: 1.55rem;
}

.page-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.contact-stack {
  display: grid;
  gap: 1.3rem;
}

.contact-form {
  padding: 1.6rem;
}

.contact-links {
  display: grid;
  gap: 0.85rem;
}

.contact-link {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(96, 109, 146, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 49, 244, 0.28);
  box-shadow: 0 16px 30px rgba(27, 41, 73, 0.1);
}

.whatsapp-qr-card {
  text-align: center;
}

.qr-image {
  width: min(220px, 100%);
  margin: 1rem auto 0;
  padding: 0.85rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(96, 109, 146, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(96, 109, 146, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(106, 49, 244, 0.45);
  box-shadow: 0 0 0 4px rgba(106, 49, 244, 0.08);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note,
.form-response {
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-links-compact {
  margin-top: 0;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.8rem 0 1.4rem;
  border-top: 1px solid rgba(117, 131, 172, 0.12);
  background: rgba(248, 251, 255, 0.86);
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer-grid {
  align-items: start;
  justify-content: space-between;
}

.footer-grid > div {
  flex: 1 1 0;
}

.brand-footer img {
  width: clamp(148px, 16vw, 200px);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(117, 131, 172, 0.12);
}

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

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

.float-card {
  animation: drift 6s ease-in-out infinite;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fbf72, #11995e);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 24px 45px rgba(20, 118, 80, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 52px rgba(20, 118, 80, 0.34);
}

.whatsapp-float__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.whatsapp-float__label::before {
  content: "WA";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-bars {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.9);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .cards-grid-large {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .cards-grid,
  .process-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement,
  .cta-panel,
  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(96, 109, 146, 0.14);
    border-radius: 24px;
    background: rgba(249, 251, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-metrics,
  .cards-grid,
  .process-grid,
  .sector-grid,
  .pricing-grid,
  .gallery-grid,
  .faq-grid,
  .split-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    min-height: auto;
  }

  .floating-tag {
    position: static;
    margin-top: 1rem;
    width: fit-content;
  }

  .whatsapp-float {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
