:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --ink: #15211f;
  --muted: #5a6c68;
  --line: #dbe7e4;
  --brand: #0c766d;
  --brand-dark: #084f49;
  --navy: #0e344f;
  --navy-deep: #09263d;
  --accent: #f2b84b;
  --blue: #2f6f9f;
  --shadow: 0 18px 50px rgba(21, 33, 31, 0.09);
  --shadow-strong: 0 22px 60px rgba(8, 31, 45, 0.18);
  --radius: 8px;
  --max: 1160px;
}

@font-face {
  font-family: "Dune Rise";
  src:
    local("Dune Rise"),
    url("../fonts/dune-rise.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7faf9 0, #eef7f4 420px, #f7faf9 820px),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(242, 184, 75, 0.95);
  outline-offset: 3px;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  transform: translateX(-50%);
  background:
    linear-gradient(135deg, rgba(12, 118, 109, 0.38), rgba(47, 111, 159, 0.2)),
    var(--navy-deep);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  transition: top 180ms ease, width 180ms ease, border-radius 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(8, 31, 45, 0.2);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  color: white;
  font-family: "Dune Rise", "Segoe UI", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-actions .button {
  color: var(--navy-deep);
  background: white;
  box-shadow: none;
}

.nav-actions .button:hover {
  background: #edf7f4;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  color: white;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(12, 118, 109, 0.18);
}

.button:hover {
  background: var(--brand-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--surface-soft);
}

.hero {
  padding: 150px 0 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero h1,
.page-hero h1 {
  max-width: 790px;
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
}

.hero .lead,
.page-hero .lead {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 46px;
  align-items: center;
}

.page-hero-media {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(12, 118, 109, 0.08), rgba(47, 111, 159, 0.1)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.page-hero-media.is-phone {
  max-width: 380px;
  padding: 12px;
}

.page-hero-media.is-phone img {
  max-height: 560px;
}

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

.trust-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

.trust-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
}

.trust-note {
  margin-top: 28px;
  max-width: 560px;
  padding: 14px 18px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.product-visual {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(12, 118, 109, 0.08), rgba(47, 111, 159, 0.1)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(0.4deg);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-header strong {
  color: var(--brand-dark);
}

.visual-products {
  display: grid;
  gap: 14px;
}

.visual-product {
  display: block;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.visual-product:hover,
.visual-product:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(12, 118, 109, 0.28);
  box-shadow: 0 12px 32px rgba(21, 33, 31, 0.08);
}

.visual-product.primary {
  background: linear-gradient(135deg, #e8f7f3, #fff8e6);
  border-color: rgba(12, 118, 109, 0.24);
}

.visual-product h2 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.visual-panel {
  position: relative;
  min-height: 510px;
}

.dashboard-mockup,
.phone-mockup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-mockup {
  padding: 18px;
}

.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.mockup-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.mockup-content {
  display: grid;
  gap: 12px;
}

.mockup-line {
  height: 12px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.mockup-line.short {
  width: 55%;
}

.mockup-card {
  min-height: 78px;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf8f5, #f8f3e4);
  border: 1px solid #e5eee9;
}

.phone-mockup {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 210px;
  padding: 13px;
}

.phone-screen {
  min-height: 390px;
  border-radius: 8px;
  padding: 18px;
  color: white;
  background: linear-gradient(160deg, var(--brand), var(--blue));
}

.phone-pill {
  width: 60px;
  height: 6px;
  margin: 0 auto 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.5);
}

.phone-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.section-header p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 118, 109, 0.22);
  box-shadow: 0 16px 40px rgba(21, 33, 31, 0.08);
}

.card.featured {
  border-color: rgba(12, 118, 109, 0.28);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p + .link {
  margin-top: 18px;
}

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

.solution-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  scroll-margin-top: 112px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card.featured {
  border-color: rgba(12, 118, 109, 0.28);
  box-shadow: var(--shadow);
}

.solution-card h3 {
  font-size: 1.45rem;
}

.solution-card .check-list {
  margin-top: 0;
}

.solution-card .link {
  margin-top: 8px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.link {
  display: inline-flex;
  color: var(--brand-dark);
  font-weight: 800;
}

.legal-content {
  max-width: 880px;
  display: grid;
  gap: 30px;
}

.legal-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.legal-content h3 {
  margin: 20px 0 8px;
  font-size: 1.04rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p + p,
.legal-content ol,
.legal-content ul {
  margin-top: 12px;
}

.legal-content a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.audience-list li {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(21, 33, 31, 0.07);
}

.step::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: white;
  background: var(--brand);
  font-weight: 800;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: logoMarquee 90s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  flex: 0 0 168px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(21, 33, 31, 0.05);
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cta {
  padding: 52px;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--brand-dark), #1f5f83);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brand), var(--blue));
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 14px;
  max-width: 720px;
}

.cta .button {
  margin-top: 26px;
  color: var(--brand-dark);
  background: white;
}

.cta .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.cta .button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-hero {
  padding: 138px 0 62px;
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.55fr);
  gap: 44px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .hero-actions,
.hero .trust-note,
.product-visual {
  animation: heroIn 700ms ease both;
}

.hero h1 {
  animation-delay: 80ms;
}

.hero .lead {
  animation-delay: 150ms;
}

.hero .hero-actions {
  animation-delay: 220ms;
}

.hero .trust-note,
.product-visual {
  animation-delay: 300ms;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list strong {
  display: block;
}

.form {
  display: grid;
  gap: 11px;
}

.field {
  display: grid;
  gap: 0;
}

.field label {
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: white;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7b8e89;
  opacity: 1;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 750;
}

.form-status.success {
  color: #0d5b43;
  background: #e5f7ef;
}

.form-status.error {
  color: #8a2d2d;
  background: #ffeaea;
}

.cookie-alert {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(920px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(12, 118, 109, 0.35), rgba(47, 111, 159, 0.18)),
    var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  transform: translateX(-50%);
}

.cookie-alert h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.05rem;
}

.cookie-alert p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.cookie-alert a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-alert .button {
  white-space: nowrap;
}

.site-footer {
  padding: 54px 0 34px;
  background: #11201d;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 28px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 3px;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.86);
    background:
      linear-gradient(135deg, rgba(12, 118, 109, 0.32), rgba(47, 111, 159, 0.18)),
      var(--navy-deep);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 13px 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .product-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    justify-self: start;
    max-width: 560px;
  }

  .visual-panel {
    min-height: 450px;
  }

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

  .logo-card {
    flex-basis: 154px;
    height: 90px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .section,
  .page-hero {
    padding: 54px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .page-hero {
    padding-top: 112px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .trust-row,
  .grid-4,
  .grid-3,
  .grid-2,
  .solution-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    flex-basis: 138px;
    height: 84px;
    padding: 14px 16px;
  }

  .visual-panel {
    min-height: auto;
  }

  .phone-mockup {
    position: relative;
    right: auto;
    width: 100%;
    margin-top: 18px;
  }

  .phone-screen {
    min-height: 300px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .page-hero-media,
  .page-hero-media.is-phone {
    max-width: 100%;
    padding: 10px;
  }

  .page-hero-media img,
  .page-hero-media.is-phone img {
    max-height: 420px;
  }

  .cookie-alert {
    grid-template-columns: 1fr;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
  }

  .cta {
    padding: 30px;
  }
}

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

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

  .logo-track {
    animation: none !important;
  }
}
