@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&family=Roboto:wght@400;500;700&display=swap");
@import "tailwindcss";

:root {
  --blue: #010935;
  --blue-soft: #0b1552;
  --green: #6eca06;
  --green-dark: #43a500;
  --green-soft: #effbdd;
  --gray-bg: #f7f7f8;
  --text: #717488;
  --white: #ffffff;
  --line: #e1e4ec;
  --shadow: 0 24px 64px rgba(1, 9, 53, 0.11);
  --soft-shadow: 0 16px 36px rgba(1, 9, 53, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--gray-bg);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

p {
  margin: 0;
  line-height: 1.65;
}

.hero {
  min-height: 100svh;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 16%, rgba(110, 202, 6, 0.14), transparent 30%),
    linear-gradient(180deg, var(--white), var(--gray-bg));
}

.topbar {
  width: min(1220px, 100%);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-wordmark {
  width: 116px;
  height: auto;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-left: auto;
}

.legal-link {
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.legal-link:hover {
  color: var(--green-dark);
}

.footer a {
  transition: color 160ms ease;
}

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

.topbar-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--green);
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(110, 202, 6, 0.2);
}

.hero-grid {
  width: min(1220px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.tagline,
.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 0.94;
  animation:
    hero-title-enter 900ms cubic-bezier(0.2, 0.78, 0.22, 1) both,
    hero-title-breathe 6.5s ease-in-out 1.1s infinite;
}

.hero h2 {
  max-width: 650px;
  margin-top: 24px;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero-subline {
  display: block;
}

@keyframes hero-title-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-breathe {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(110, 202, 6, 0);
  }

  50% {
    text-shadow: 0 18px 46px rgba(110, 202, 6, 0.1);
  }
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-green {
  background: var(--green);
  color: var(--blue);
  box-shadow: 0 18px 34px rgba(110, 202, 6, 0.28);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(1, 9, 53, 0.22);
}

.button-outline {
  border: 1px solid rgba(1, 9, 53, 0.18);
  background: var(--white);
  color: var(--blue);
}

.support-text {
  max-width: 650px;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-product {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(366px, 88vw);
  margin: 0 auto;
  border: 10px solid var(--blue);
  border-radius: 38px;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 116px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #000516;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 606px;
  min-height: 0;
  border-radius: 27px;
  background: var(--gray-bg);
}

.phone-status,
.app-welcome {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: var(--white);
}

.phone-status {
  padding: 40px 22px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-status span:last-child {
  color: var(--green);
}

.app-welcome {
  padding: 8px 22px 32px;
}

.app-welcome strong {
  display: block;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.26rem;
  line-height: 1.1;
}

.app-welcome span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
}

.avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.phone-scroll-viewport {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: var(--gray-bg);
}

.phone-scroll-content {
  position: relative;
  padding-top: 18px;
  padding-bottom: 24px;
  animation: app-screen-scroll 7.8s ease-in-out infinite;
  will-change: transform;
}

.diagnostic-card {
  width: calc(100% - 34px);
  min-height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(1, 9, 53, 0.18);
}

.diagnostic-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
}

.diagnostic-card small {
  display: block;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diagnostic-card strong {
  display: block;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
}

.app-label {
  margin: 16px 18px 8px;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

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

.profile-grid button {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 6px;
  background: var(--white);
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.14;
  text-align: center;
}

.profile-grid button:first-child {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(110, 202, 6, 0.26);
}

.profile-icon {
  display: block;
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
}

.textarea-preview {
  min-height: 70px;
  margin: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: var(--white);
  color: #9a9caf;
  font-size: 0.8rem;
  line-height: 1.35;
}

.app-button {
  min-height: 48px;
  margin: 14px 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #737891;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
}

.app-price {
  min-height: 56px;
  margin: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
}

.app-price span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.app-price strong {
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
}

.app-report-preview {
  margin: 0 18px 12px;
  border: 1px solid rgba(1, 9, 53, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(1, 9, 53, 0.06);
}

.app-report-preview small {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-report-preview strong {
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1.25;
}

.app-tabbar {
  position: relative;
  z-index: 2;
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(1, 9, 53, 0.1);
  background: var(--white);
}

.app-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #737891;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.58rem;
  line-height: 1;
}

.app-tabbar a:first-child {
  color: var(--blue);
}

.app-tabbar span {
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1;
}

.app-tabbar strong {
  font-weight: 800;
}

@keyframes app-screen-scroll {
  0%,
  22% {
    transform: translateY(0);
  }

  46%,
  68% {
    transform: translateY(-116px);
  }

  92%,
  100% {
    transform: translateY(0);
  }
}

.section {
  padding: 82px 24px;
}

.section-white {
  background: var(--white);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 40px;
}

.section-heading.centered {
  max-width: 760px;
  text-align: center;
}

.section-heading.centered .section-label {
  justify-content: center;
}

.section-heading p {
  margin-top: 18px;
}

.section h2 {
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1.06;
  text-wrap: balance;
}

.heading-break {
  display: block;
}

.steps-grid,
.testimonial-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.steps-grid {
  position: relative;
  align-items: stretch;
}

.step-card,
.testimonial-card,
.asset-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.testimonial-card,
.asset-card,
.legal-card,
.post-access-card {
  position: relative;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.testimonial-card::after,
.asset-card::after,
.legal-card::after,
.post-access-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0%, rgba(110, 202, 6, 0.1) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-42%);
  transition:
    opacity 240ms ease,
    transform 420ms ease;
}

.testimonial-card:hover,
.asset-card:hover,
.legal-card:hover,
.post-access-card:hover {
  border-color: rgba(110, 202, 6, 0.42);
  box-shadow: 0 22px 46px rgba(1, 9, 53, 0.1);
  transform: translateY(-4px);
}

.testimonial-card:hover::after,
.asset-card:hover::after,
.legal-card:hover::after,
.post-access-card:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.step-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  animation: step-card-enter 620ms ease both;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  background: linear-gradient(180deg, rgba(110, 202, 6, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: -1;
}

.step-card:nth-child(2) {
  animation-delay: 110ms;
}

.step-card:nth-child(3) {
  animation-delay: 220ms;
}

.step-card:hover {
  border-color: rgba(110, 202, 6, 0.52);
  box-shadow: 0 22px 46px rgba(1, 9, 53, 0.1);
  transform: translateY(-5px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-index {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(1, 9, 53, 0.12);
}

.step-card h3,
.asset-card h3 {
  margin-bottom: 14px;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.2;
}

.step-card h3 {
  min-height: 3em;
  display: flex;
  align-items: flex-start;
}

.step-card p {
  color: var(--text);
  font-size: 1rem;
}

.step-card strong {
  display: block;
  margin-top: 18px;
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
}

@keyframes step-card-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes step-flow {
  0% {
    transform: translateX(-18%);
    opacity: 0;
  }

  20%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(118%);
    opacity: 0;
  }
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes text-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .section-heading,
  .validation-copy,
  .assets-copy {
    animation: text-reveal 1ms both;
    animation-timeline: view();
    animation-range: entry 12% cover 34%;
  }

  .testimonial-card,
  .asset-card,
  .legal-card,
  .post-access-card,
  .report-art-card,
  .validation-pillar {
    animation: section-reveal 1ms both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  .testimonial-card:nth-child(2),
  .asset-card:nth-child(2),
  .validation-pillar:nth-child(2) {
    animation-range: entry 14% cover 34%;
  }

  .testimonial-card:nth-child(3),
  .asset-card:nth-child(3),
  .validation-pillar:nth-child(3) {
    animation-range: entry 18% cover 38%;
  }

  .asset-card:nth-child(4),
  .validation-pillar:nth-child(4) {
    animation-range: entry 22% cover 42%;
  }
}

.validation-section {
  background: var(--gray-bg);
}

.validation-layout {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.specialist-visual {
  display: grid;
  gap: 18px;
}

.report-art-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 1.5 / 1;
}

.report-art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.validation-pillar-strip {
  display: grid;
  width: min(1040px, 100%);
  margin: 34px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.validation-pillar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.validation-pillar img {
  width: 100%;
  max-width: 147px;
  height: auto;
  object-fit: contain;
}

.validation-copy {
  max-width: 620px;
}

.validation-copy h2,
.assets-copy h2 {
  margin-bottom: 22px;
}

.validation-copy .button {
  margin-top: 28px;
}

.post-access-card {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(110, 202, 6, 0.34);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.post-access-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-access-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.34rem;
  line-height: 1.15;
}

.testimonials-section {
  border-top: 1px solid var(--line);
}

.testimonial-card {
  min-height: 218px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--blue);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--green-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
}

.assets-layout {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.assets-copy {
  max-width: 720px;
}

.assets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.asset-card {
  padding: 26px;
  background: var(--gray-bg);
}

.asset-card h3::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--green);
}

.legal-section {
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--gray-bg);
}

.legal-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-card h2 {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.legal-card p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer {
  padding: 12px 24px;
  background: var(--blue);
  color: rgba(247, 247, 248, 0.76);
  font-size: 0.82rem;
}

.footer-row {
  width: min(1220px, 100%);
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-row-simple {
  justify-content: center;
}

.footer-brandline,
.footer-whatsapp,
.footer-rights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  line-height: 1.35;
}

.footer-brandline {
  color: rgba(247, 247, 248, 0.78);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-whatsapp {
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.whatsapp-badge {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.16);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-rights {
  color: rgba(247, 247, 248, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
}

.nowrap {
  white-space: nowrap;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 19;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(110, 202, 6, 0.46);
  border-radius: 50%;
  background: var(--blue);
  color: var(--green);
  box-shadow: 0 18px 38px rgba(1, 9, 53, 0.2);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.scroll-top span {
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.scroll-top:hover {
  border-color: var(--green);
  box-shadow: 0 22px 44px rgba(1, 9, 53, 0.28);
  transform: translateY(-3px);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(110, 202, 6, 0.35);
  outline-offset: 4px;
}

.cookie-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: min(520px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(1, 9, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(1, 9, 53, 0.16);
}

.cookie-toggle:checked + .cookie-consent {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-consent a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-consent label {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--green);
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 560px) {
  .hero {
    padding: 18px 16px 64px;
  }

  .topbar {
    min-height: 58px;
    flex-wrap: wrap;
  }

  .brand {
    gap: 9px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-wordmark {
    width: 98px;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .legal-link {
    font-size: 0.7rem;
  }

  .topbar-cta {
    min-height: 38px;
    margin-left: auto;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-grid {
    margin-top: 34px;
  }

  .hero-product {
    min-height: auto;
  }

  .phone-mockup {
    width: min(342px, 100%);
  }

  .phone-screen {
    height: 586px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 16px;
  }

  .footer {
    padding: 14px 16px;
  }

  .legal-section {
    padding: 22px 16px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-row,
  .footer-brandline,
  .footer-whatsapp,
  .footer-rights {
    justify-content: center;
    text-align: center;
  }

  .footer-row {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-consent {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent label {
    width: 100%;
  }

  .scroll-top {
    right: 16px;
    bottom: 138px;
    width: 42px;
    height: 42px;
  }

  .specialist-visual {
    gap: 14px;
  }

  .step-card,
  .testimonial-card,
  .asset-card {
    padding: 24px;
  }

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

  .step-card h3 {
    min-height: auto;
  }

  .validation-pillar-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: 26px;
  }

  .validation-pillar img {
    max-width: 120px;
  }
}

@media (min-width: 760px) {
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid::before,
  .steps-grid::after {
    content: "";
    position: absolute;
    top: 54px;
    left: 13%;
    right: 13%;
    height: 2px;
    pointer-events: none;
  }

  .steps-grid::before {
    background: rgba(110, 202, 6, 0.18);
  }

  .steps-grid::after {
    width: 38%;
    right: auto;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(110, 202, 6, 0.95),
      transparent
    );
    animation: step-flow 3.8s ease-in-out infinite;
  }

  .step-card {
    z-index: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .step-card,
  .steps-grid::after,
  .phone-scroll-content,
  .section-heading,
  .validation-copy,
  .assets-copy,
  .testimonial-card,
  .asset-card,
  .legal-card,
  .post-access-card,
  .report-art-card,
  .validation-pillar,
  .scroll-top {
    animation: none;
  }

  .step-card,
  .step-card:hover,
  .testimonial-card:hover,
  .asset-card:hover,
  .legal-card:hover,
  .post-access-card:hover,
  .scroll-top:hover {
    transform: none;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
    gap: 56px;
    align-items: end;
  }

  .phone-mockup {
    margin-right: 18px;
  }

  .validation-layout {
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 0.88fr);
  }

  .assets-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    align-items: start;
  }
}
