:root {
  --bg: #f7fbff;
  --bg-strong: #ffffff;
  --bg-soft: #eef5ff;
  --text: #0a1738;
  --muted: #52617f;
  --line: rgba(10, 23, 56, 0.1);
  --blue: #1976ff;
  --cyan: #0eb9f1;
  --teal: #13d3b0;
  --navy: #0c1738;
  --shadow-lg: 0 30px 80px rgba(25, 70, 140, 0.16);
  --shadow-md: 0 18px 42px rgba(12, 23, 56, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 2rem));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  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(25, 118, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(19, 211, 176, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  overflow-x: hidden;
}

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

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

.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: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(10, 23, 56, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.nav-menu a {
  transition: color var(--transition), transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(25, 118, 255, 0.22);
}

.nav-home {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 23, 56, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(10, 23, 56, 0.06);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  flex-direction: column;
}

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

.hero {
  padding-top: 4.75rem;
}

.hero-grid,
.spotlight-grid,
.download-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-grid > *,
.spotlight-grid > *,
.download-grid > *,
.service-grid > *,
.cta-panel > * {
  min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.spotlight-copy h2,
.service-panel h2,
.download-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.eyeline {
  margin: 0 0 1rem;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-lead,
.section-heading p,
.spotlight-copy p,
.service-panel p,
.download-copy p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 2rem 0;
}

.footer-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(12, 23, 56, 0.08);
  border: 1px solid rgba(12, 23, 56, 0.1);
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 18px 38px rgba(25, 118, 255, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 23, 56, 0.1);
  box-shadow: 0 12px 24px rgba(10, 23, 56, 0.08);
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.product-card,
.seo-card,
.download-panel,
.cta-panel,
.visual-pane,
.service-list article {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  padding: 1.6rem;
}

.hero-card-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 255, 0.92)),
    linear-gradient(135deg, rgba(25, 118, 255, 0.08), rgba(19, 211, 176, 0.08));
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.hero-card h2 {
  margin: 1rem 0 0.8rem;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-card p,
.product-card p,
.service-list p,
.seo-card p,
.download-item span,
.spotlight-list span,
.mini-card span,
.side-list span {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-stack,
.side-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.mini-card,
.side-list div {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 23, 56, 0.08);
}

.hero-card-side {
  display: grid;
  gap: 1rem;
}

.side-label {
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.3rem;
}

.section-heading h2,
.spotlight-copy h2,
.service-panel h2,
.download-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  margin-bottom: 1rem;
}

.product-grid,
.seo-grid,
.service-grid {
  display: grid;
  gap: 1.25rem;
}

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

.product-card,
.seo-card,
.service-list article {
  position: relative;
  padding: 1.55rem;
  overflow: hidden;
}

.product-card h3,
.seo-card h3,
.service-list h3,
.download-item strong {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.product-card-logo-wrap {
  min-height: 52px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.product-card-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.product-card-logo-mark {
  height: 42px;
}

.product-card-logo-wide {
  height: 28px;
}

.product-card-logo-lun {
  height: 26px;
  padding: 0.42rem 0.7rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(12, 23, 56, 0.96), rgba(25, 118, 255, 0.88));
  box-shadow: 0 10px 22px rgba(12, 23, 56, 0.18);
}

.product-link-with-logo,
.visual-pane-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.product-inline-logo {
  display: block;
  height: 24px;
  width: auto;
  object-fit: contain;
}

.product-inline-logo-mark {
  height: 28px;
}

.product-inline-logo-wide {
  height: 22px;
}

.product-inline-logo-lun {
  height: 20px;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(12, 23, 56, 0.96), rgba(25, 118, 255, 0.88));
  box-shadow: 0 8px 18px rgba(12, 23, 56, 0.16);
}

.visual-pane-brand a {
  color: inherit;
}

.featured-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 255, 0.95)),
    linear-gradient(135deg, rgba(25, 118, 255, 0.1), rgba(19, 211, 176, 0.08));
}

.card-accent {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.spotlight-visual {
  display: grid;
  gap: 1rem;
}

.visual-pane {
  padding: 1.8rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(19, 211, 176, 0.22), transparent 36%),
    linear-gradient(160deg, #0f1e47 0%, #13367b 48%, #12cda9 125%);
  color: #ffffff;
}

.visual-pane span {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.visual-pane strong {
  margin-top: 0.8rem;
  max-width: 15ch;
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.visual-pane-small {
  min-height: 150px;
  background:
    radial-gradient(circle at top left, rgba(25, 118, 255, 0.25), transparent 40%),
    linear-gradient(160deg, #ffffff 0%, #eef6ff 60%, #dffaf4 100%);
  color: var(--text);
}

.spotlight-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.spotlight-list div {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.service-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.service-panel,
.download-panel,
.cta-panel {
  padding: 2rem;
}

.service-panel-dark {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(19, 211, 176, 0.22), transparent 34%),
    linear-gradient(160deg, #0d183b 0%, #122a66 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.service-panel-dark p,
.service-panel-dark .eyeline {
  color: rgba(255, 255, 255, 0.82);
}

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

.download-panel {
  display: grid;
  gap: 1rem;
}

.contact {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-visual {
  width: min(520px, 100%);
  margin-top: 28px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(10, 23, 56, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 34px rgba(17, 20, 24, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(10, 23, 56, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 118, 255, 0.24);
  box-shadow: 0 22px 54px rgba(17, 20, 24, .13);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

.contact-form label,
.privacy-check {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--text);
  background: #fbfcfd;
  border: 1px solid #cfd6df;
  border-radius: var(--radius-sm);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--bg-strong);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(14, 185, 241, 0.12);
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.whatsapp-button {
  color: #ffffff;
  background: #1f9d61;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #17834f;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--cyan);
  font-weight: 700;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(25, 118, 255, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(19, 211, 176, 0.22), transparent 28%),
    linear-gradient(160deg, #0d183b 0%, #16397d 50%, #0fbfcb 130%);
}

.result-card {
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 48px);
  background: var(--bg-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.result-card img {
  width: 140px;
  padding: 12px;
  margin-bottom: 28px;
  background: rgba(10, 23, 56, 0.04);
  border-radius: var(--radius-md);
}

.result-card h1 {
  margin: 0 0 0.9rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.result-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.download-item {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(10, 23, 56, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

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

.testimonials-section {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.88));
  box-shadow: var(--shadow-lg);
}

.testimonial-product {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(25, 118, 255, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.testimonial-quote {
  margin: 0 0 1.15rem;
  color: var(--text);
  line-height: 1.72;
  font-size: 1rem;
}

.testimonial-meta {
  display: grid;
  gap: 0.2rem;
}

.testimonial-meta strong {
  font-size: 0.98rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.93rem;
}

.cta-section {
  padding-bottom: 6.5rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(25, 118, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(19, 211, 176, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 0 0 2rem;
}

.detail-page .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.legal-page {
  padding: 4.5rem 0 6rem;
}

.legal-hero {
  margin-bottom: 2.3rem;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.legal-content {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
}

.legal-content h2 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.legal-content h2:not(:first-child) {
  margin-top: 2rem;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 0.95rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

.detail-hero {
  padding-top: 4.5rem;
}

.detail-hero-grid,
.detail-grid {
  display: grid;
  gap: 1.4rem;
}

.detail-hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.detail-copy,
.detail-panel,
.info-card {
  min-width: 0;
}

.detail-brand-lockup {
  margin: 0.35rem 0 1.1rem;
  color: var(--text);
}

.detail-brand-lockup strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.detail-panel {
  display: grid;
  gap: 1rem;
}

.detail-stat,
.info-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.detail-stat strong,
.info-card h2 {
  display: block;
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.detail-stat span,
.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(10, 23, 56, 0.08);
}

.footer-brand {
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  color: var(--muted);
}

.footer-consent-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-project-link {
  margin-top: 0.45rem;
}

.footer-project-link a {
  color: var(--blue);
  font-weight: 700;
}

.consent-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 40;
}

.consent-banner-inner {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(12, 23, 56, 0.22);
  backdrop-filter: blur(16px);
}

.consent-copy strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.consent-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}

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

.consent-decline,
.consent-accept {
  min-height: 48px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .spotlight-grid,
  .download-grid,
  .service-grid,
  .cta-panel,
  .detail-hero-grid,
  .detail-grid,
  .contact,
  .two-columns {
    grid-template-columns: 1fr;
  }

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

  .cta-panel {
    align-items: flex-start;
  }

  .consent-banner-inner {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    justify-content: flex-start;
  }
}

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

  .site-header .container {
    position: relative;
  }

  .nav {
    min-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% - 0.4rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(10, 23, 56, 0.08);
    box-shadow: var(--shadow-md);
  }

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

  .nav-menu a {
    padding: 0.9rem 0.4rem;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .spotlight-copy h2,
  .service-panel h2,
  .download-copy h2,
  .cta-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .product-grid,
  .seo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-soft::before {
    inset: 0.5rem;
    border-radius: 28px;
  }

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

  .consent-banner {
    inset: auto 0.75rem 0.75rem;
  }

  .consent-banner-inner {
    width: auto;
    padding: 1rem;
    border-radius: 20px;
  }

  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions .button,
  .consent-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
