:root {
  --primary: #1268f3;
  --primary-dark: #0a3e91;
  --primary-soft: #eef5ff;
  --ink: #101828;
  --muted: #475467;
  --line: #e4e7ec;
  --white: #ffffff;
  --soft-gray: #f8fafc;
  --success: #12b76a;
  --shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1160px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(18, 104, 243, 0.35);
  outline-offset: 3px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-ready .reveal-down {
  transform: translate3d(0, -18px, 0);
}

.reveal-ready .reveal-left {
  transform: translate3d(-28px, 0, 0);
}

.reveal-ready .reveal-right {
  transform: translate3d(28px, 0, 0);
}

.reveal-ready .reveal-scale {
  transform: scale(0.97);
}

.reveal-ready .reveal-fade {
  transform: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 231, 236, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.site-footer a {
  color: var(--muted);
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.desktop-cta {
  display: none;
}

.menu-toggle,
.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  margin-left: auto;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background: rgba(16, 24, 40, 0.38);
}

.mobile-menu-panel {
  margin-left: auto;
  max-width: 380px;
  min-height: 100%;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mobile-menu a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 12px;
  color: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.icon-button:active,
.menu-toggle:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(18, 104, 243, 0.22);
}

.button-primary:hover {
  background: #0f5fe0;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
}

.hero {
  padding-top: 56px;
  background:
    radial-gradient(circle at 80% 10%, rgba(18, 104, 243, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hero-grid,
.quiz-layout,
.expert-grid,
.process-grid {
  display: grid;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d8e8ff;
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 10vw, 4.65rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 7vw, 3.15rem);
}

h3 {
  margin-bottom: 8px;
  line-height: 1.18;
}

.hero-text,
.section-heading p,
.expert-copy p,
.offer-box p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.trust-strip {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.trust-strip li {
  display: grid;
  padding: 12px;
  border-radius: 14px;
  background: var(--soft-gray);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-system {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,245,255,0.92));
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  max-height: min(62vh, 620px);
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  border-radius: 22px;
}

.system-card {
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.08);
}

.system-card-main {
  padding: 20px;
}

.card-kicker,
.system-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  gap: 10px;
  margin-top: 22px;
  align-items: end;
}

.metric-row span {
  min-height: 86px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1268f3, #cfe2ff);
}

.metric-row span:nth-child(2) {
  min-height: 54px;
}

.metric-row span:nth-child(3) {
  min-height: 112px;
}

.system-card.mini {
  position: absolute;
  width: min(46%, 190px);
  padding: 16px;
}

.system-card.lead {
  right: 18px;
  top: 170px;
}

.system-card.page {
  left: 20px;
  bottom: 92px;
}

.system-card.automation {
  right: 22px;
  bottom: 34px;
}

.system-flow {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.system-flow span {
  padding: 10px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.problem-solution,
.services {
  background: var(--primary-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.pain-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.pain-card,
.quiz-card,
.service-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.05);
}

.pain-card {
  padding: 20px;
}

.symbol {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 14px;
  font-weight: 850;
}

.pain-card p,
.service-card p,
.testimonial-card p,
.timeline p {
  color: var(--muted);
}

.solution-flow {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.solution-flow div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 104, 243, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.solution-flow span,
.timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.quiz-card {
  padding: 18px;
}

.quiz-top {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf0f8;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 220ms ease;
}

.quiz-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-fieldset legend {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.2;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.quiz-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.quiz-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.quiz-result {
  padding: 18px;
  border-radius: 18px;
  background: var(--primary-soft);
}

.quiz-result h3 {
  margin-bottom: 8px;
}

.quiz-result .button {
  width: 100%;
  margin-top: 14px;
}

.quiz-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.quiz-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.expert-shell {
  display: grid;
  gap: 28px;
}

.team-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-slides {
  position: relative;
}

.team-slide {
  display: grid;
  gap: 0;
}

.team-slide.is-animating {
  animation: teamSlideIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-slide[hidden] {
  display: none;
}

.team-photo {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.96) 0 22%, transparent 23%),
    linear-gradient(145deg, rgba(10, 62, 145, 0.08), rgba(18, 104, 243, 0.18)),
    linear-gradient(180deg, #f8fbff, #e7f1ff);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.team-photo-placeholder span {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 32px;
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 24px 44px rgba(18, 104, 243, 0.25);
}

.team-photo-placeholder small {
  align-self: end;
  color: var(--muted);
  font-weight: 800;
}

.team-info {
  padding: 22px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.team-info p:not(.eyebrow) {
  color: var(--muted);
}

.team-info .button {
  width: 100%;
  margin-top: 8px;
}

.team-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
  padding: 0 18px 18px;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.team-dot.is-active {
  width: 28px;
  background: var(--primary);
}

.quiz-card.is-changing .quiz-fieldset,
.quiz-card.is-changing .quiz-result {
  animation: quizStepIn 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.check-list,
.offer-list,
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.check-list li,
.offer-list li,
.service-card li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.offer-list li::before,
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  transform: translateY(-50%);
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-row .section-heading {
  margin-bottom: 0;
}

.carousel-controls {
  display: none;
  gap: 10px;
}

.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(282px, 86%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 16px;
}

.services-track::-webkit-scrollbar {
  height: 10px;
}

.services-track::-webkit-scrollbar-thumb {
  background: rgba(18, 104, 243, 0.25);
  border-radius: 999px;
}

.service-card {
  min-height: 430px;
  padding: 20px;
  display: grid;
  align-content: start;
  scroll-snap-align: start;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 850;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 22px;
}

.service-card a {
  align-self: end;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.carousel-status {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card {
  padding: 20px;
}

.avatar-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px dashed #b8c2d3;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft-gray);
  font-size: 0.86rem;
  font-weight: 800;
}

.placeholder-card {
  border-style: dashed;
}

.placeholder-card small {
  color: var(--primary-dark);
  font-weight: 800;
}

.process {
  background: var(--soft-gray);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #d7e5fb;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.timeline div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.timeline h3,
.timeline p {
  margin-bottom: 0;
}

.final-offer {
  background: var(--white);
}

.offer-box {
  display: grid;
  gap: 24px;
  padding: 28px;
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 26px 60px rgba(10, 62, 145, 0.24);
}

.offer-box h2 {
  color: var(--white);
}

.offer-box p {
  color: #e8f1ff;
}

.offer-list {
  display: grid;
  gap: 10px;
}

.offer-list li::before {
  background: var(--white);
}

.offer-action {
  display: grid;
  gap: 10px;
}

.offer-action small {
  color: #d8e8ff;
  text-align: center;
}

.offer-social {
  color: #d8e8ff;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.closing-visual {
  padding-top: 42px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%),
    var(--white);
}

.closing-art {
  margin: 0 auto;
  max-width: 760px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.closing-art img {
  width: 100%;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  border-radius: 22px;
}

.site-footer {
  padding: 48px 0 28px;
  color: #d3d9e8;
  background: #071d42;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer p {
  color: #b8c4d8;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  min-height: 30px;
  color: #d3d9e8;
}

.site-footer .contact-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 7px 10px 7px 0;
  border-radius: 14px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon img {
  width: 20px;
  height: 20px;
}

.contact-icon-whatsapp {
  background: #16a34a;
}

.contact-icon-instagram {
  background: linear-gradient(135deg, #fd5, #f43f5e 48%, #7c3aed);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer .contact-link {
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .site-footer .contact-link:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(3px);
  }
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c4d8;
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
}

.floating-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  gap: 10px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-actions.is-muted {
  opacity: 0.2;
  transform: translateY(8px);
  pointer-events: none;
}

.float-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 16px 30px rgba(16, 24, 40, 0.2);
}

.float-button img {
  width: 24px;
  height: 24px;
}

.float-whatsapp {
  width: 58px;
  height: 58px;
  background: #16a34a;
}

.float-whatsapp img {
  width: 26px;
  height: 26px;
}

.float-instagram {
  background: linear-gradient(135deg, #fd5, #f43f5e 48%, #7c3aed);
}

@keyframes quizStepIn {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes teamSlideIn {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .pain-card,
  .service-card,
  .testimonial-card,
  .timeline div {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease;
  }

  .pain-card:hover,
  .service-card:hover,
  .testimonial-card:hover,
  .timeline div:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(16, 24, 40, 0.09);
    border-color: rgba(18, 104, 243, 0.24);
  }
}

.noscript-alert {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  padding: 14px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
}

@media (min-width: 520px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .reveal-ready .reveal {
    transform: translate3d(0, 16px, 0);
    transition-duration: 520ms;
  }

  .reveal-ready .reveal-down {
    transform: translate3d(0, -12px, 0);
  }

  .reveal-ready .reveal-left {
    transform: translate3d(-16px, 0, 0);
  }

  .reveal-ready .reveal-right {
    transform: translate3d(16px, 0, 0);
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .hero-grid,
  .quiz-layout,
  .process-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: center;
  }

  .expert-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
    align-items: center;
  }

  .quiz-layout,
  .process-grid {
    align-items: start;
  }

  .quiz-card {
    padding: 24px;
  }

  .solution-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .offer-box {
    padding: 42px;
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
  }

  .offer-action {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 76px;
  }

  .section-pad {
    padding: 96px 0;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-size: 0.94rem;
    font-weight: 700;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 58px;
  }

  .hero-system {
    padding: 16px;
  }

  .hero-media img {
    max-height: 720px;
  }

  .closing-art {
    max-width: 880px;
    padding: 16px;
  }

  .system-card.automation {
    bottom: 88px;
  }

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

  .team-slide {
    grid-template-columns: minmax(300px, 0.92fr) 1fr;
    align-items: stretch;
  }

  .team-info {
    display: grid;
    align-content: center;
    padding: 34px;
    text-align: left;
  }

  .team-info .button {
    width: max-content;
  }

  .solution-flow {
    grid-template-columns: repeat(6, 1fr);
  }

  .solution-flow div {
    display: grid;
    align-content: start;
  }

  .carousel-controls {
    display: flex;
  }

  .services-track {
    grid-auto-columns: calc((100% - 32px) / 3);
    overflow-x: hidden;
  }

  .service-card {
    min-height: 462px;
  }

  .offer-box {
    grid-template-columns: 1.1fr 1fr auto;
  }

  .offer-action {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}
