:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #4b5563;
  --line: #e5e7eb;
  --surface: #f8fafc;
  --blue: #2563eb;
  --green: #10b981;
  --blue-soft: #dbeafe;
  --green-soft: #d1fae5;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  --hero-slide-height-mobile: 520px;
  --nav-active: #0f172a;
  --theme-toggle-border: rgba(255, 255, 255, 0.22);
  --theme-toggle-bg: rgba(255, 255, 255, 0.08);
  --theme-toggle-icon: #ffffff;
  --theme-toggle-solid-border: var(--line);
  --theme-toggle-solid-bg: #ffffff;
  --theme-toggle-solid-icon: #0f172a;
  --theme-toggle-hover-bg: rgba(255, 255, 255, 0.16);
  --theme-toggle-solid-hover-bg: #f8fafc;
  --meta-theme: #ffffff;
  --container-max: 1120px;
  --container-gutter: clamp(1rem, 11.11vw, 10rem);
}

[data-theme="dark"] {
  --bg: #08111f;
  --text: #ecf3ff;
  --muted: #a6b4c8;
  --line: rgba(148, 163, 184, 0.22);
  --surface: #0d1729;
  --blue: #60a5fa;
  --green: #34d399;
  --blue-soft: rgba(37, 99, 235, 0.22);
  --green-soft: rgba(16, 185, 129, 0.18);
  --shadow: 0 18px 42px rgba(2, 6, 23, 0.38);
  --nav-active: #eff6ff;
  --theme-toggle-border: rgba(148, 163, 184, 0.28);
  --theme-toggle-bg: rgba(15, 23, 42, 0.48);
  --theme-toggle-icon: #eff6ff;
  --theme-toggle-solid-border: rgba(148, 163, 184, 0.24);
  --theme-toggle-solid-bg: rgba(8, 17, 31, 0.86);
  --theme-toggle-solid-icon: #eff6ff;
  --theme-toggle-hover-bg: rgba(30, 41, 59, 0.76);
  --theme-toggle-solid-hover-bg: rgba(15, 23, 42, 0.96);
  --meta-theme: #08111f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container-max), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 20, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

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

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.92);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-logo-solid {
  position: absolute;
  inset: 0 auto 0 0;
  opacity: 0;
  transform: translateY(2px);
}

.site-header.is-solid .brand-logo-hero {
  opacity: 0;
  transform: translateY(-2px);
}

.site-header.is-solid .brand-logo-solid {
  opacity: 1;
  transform: translateY(0);
}

.nav-links {
  list-style: none;
  display: none;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-cta-item {
  display: flex;
}

.nav-cta {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-header .nav-cta {
  background: #ffffff;
  color: #0f172a;
  box-shadow: none;
}

.site-header.is-solid .nav-cta {
  background: linear-gradient(120deg, var(--blue), #0f5ddd);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  transition: color 0.25s ease;
}

.site-header.is-solid nav a {
  color: var(--muted);
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  right: 50px;
  top: 18px;
  z-index: 40;
}

.theme-toggle {
  border: 1px solid var(--theme-toggle-border);
  background: var(--theme-toggle-bg);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  right: 104px;
  top: 18px;
  z-index: 40;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--theme-toggle-hover-bg);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--theme-toggle-icon);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.theme-toggle-icon-sun {
  opacity: 0;
  transform: scale(0.9);
}

[data-theme="dark"] .theme-toggle-icon-moon {
  opacity: 0;
  transform: scale(0.9);
}

[data-theme="dark"] .theme-toggle-icon-sun {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
}

.site-header.is-solid .nav-toggle {
  border-color: var(--line);
  background: #ffffff;
}

.site-header.is-solid .nav-toggle svg {
  stroke: #0f172a;
}

.site-header.is-solid .theme-toggle {
  border-color: var(--theme-toggle-solid-border);
  background: var(--theme-toggle-solid-bg);
}

.site-header.is-solid .theme-toggle:hover,
.site-header.is-solid .theme-toggle:focus-visible {
  background: var(--theme-toggle-solid-hover-bg);
}

.site-header.is-solid .theme-toggle svg {
  stroke: var(--theme-toggle-solid-icon);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-open {
  opacity: 0;
}

.nav-toggle[aria-expanded="false"] .nav-toggle-close {
  opacity: 0;
}

nav.is-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(9, 14, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  gap: 0.9rem;
  width: min(260px, 90vw);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
  z-index: 30;
}

.site-header.is-solid nav.is-open .nav-links {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

nav a:hover,
nav a:focus-visible {
  color: #ffffff;
}

.site-header.is-solid nav a:hover,
.site-header.is-solid nav a:focus-visible {
  color: var(--text);
}

[data-theme="dark"] .site-header {
  background: rgba(3, 8, 18, 0.36);
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

[data-theme="dark"] .site-header.is-solid {
  background: rgba(8, 17, 31, 0.88);
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

[data-theme="dark"] .nav-toggle,
[data-theme="dark"] .site-header.is-solid .nav-toggle {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(8, 17, 31, 0.86);
}

[data-theme="dark"] .nav-toggle svg,
[data-theme="dark"] .site-header.is-solid .nav-toggle svg {
  stroke: #eff6ff;
}

[data-theme="dark"] .site-header .nav-cta {
  background: rgba(255, 255, 255, 0.1);
  color: #eff6ff;
}

[data-theme="dark"] .site-header.is-solid .nav-cta {
  background: linear-gradient(120deg, var(--blue), #2563eb);
  color: #08111f;
}

[data-theme="dark"] nav a,
[data-theme="dark"] .site-header.is-solid nav a {
  color: rgba(239, 246, 255, 0.9);
}

[data-theme="dark"] nav.is-open .nav-links,
[data-theme="dark"] .site-header.is-solid nav.is-open .nav-links {
  background: rgba(8, 17, 31, 0.95);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.42);
}

[data-theme="dark"] .site-header.is-solid .brand-logo-hero {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="dark"] .site-header.is-solid .brand-logo-solid {
  opacity: 0;
  transform: translateY(2px);
}

.section,
.hero {
  padding: 4.75rem 0;
}

.hero {
  padding-top: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 0;
}

.hero-media {
  display: block;
}

.hero-surface {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100svh;
  height: 100svh;
  overflow: clip;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.16) 0%, rgba(2, 6, 23, 0.4) 52%, rgba(2, 6, 23, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72) 0%, rgba(2, 6, 23, 0.2) 46%, rgba(2, 6, 23, 0.46) 100%);
}

.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 78%, rgba(37, 99, 235, 0.22), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(16, 185, 129, 0.14), transparent 24%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: var(--blue);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.05rem, 6vw, 4.4rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  margin-bottom: 0.9rem;
  max-width: 16ch;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.06rem, 2.4vw, 1.3rem);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.text-gradient {
  background-image: linear-gradient(115deg, #2563eb 0%, #0ea5e9 40%, #10b981 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero-lead,
.section-heading p {
  max-width: 66ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
}

.hero-content {
  max-width: min(940px, 100%);
  color: #ffffff;
}

.hero-content .eyebrow {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
  max-width: 15ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.hero-content .hero-lead {
  max-width: 46ch;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-content .hero-support {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
}

.hero-content .text-gradient {
  background-image: linear-gradient(115deg, #ffffff 0%, #dbeafe 35%, #bfdbfe 100%);
}

.hero .btn-primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(2, 6, 23, 0.24);
}

.hero .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.76rem 1.18rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--blue), #0f5ddd);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #f9fafb;
}

[data-theme="dark"] .btn-secondary {
  background: rgba(15, 23, 42, 0.72);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-secondary:focus-visible {
  background: rgba(30, 41, 59, 0.9);
}

.card,
.benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .card,
[data-theme="dark"] .benefit,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .download-step {
  background: rgba(13, 23, 41, 0.88);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="dark"] .icon-list li,
[data-theme="dark"] .pricing-list li {
  color: var(--text);
}

.hero-media-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-media-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-slideshow {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: fadeSlide 2s ease;
}

.hero-slideshow-controls {
  position: absolute;
  right: max(1rem, calc((100vw - 1120px) / 2));
  bottom: 2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-slideshow-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.hero-slideshow-btn svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

[data-theme="dark"] .hero-slideshow-btn {
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(8, 17, 31, 0.3);
}

@keyframes fadeSlide {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.image-modal.is-open {
  display: block;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.64);
  backdrop-filter: blur(2px);
}

.image-modal-dialog {
  position: relative;
  width: min(1100px, calc(100vw - 1.5rem));
  margin: min(6vh, 3rem) auto 0;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
  padding: 0.75rem;
}

[data-theme="dark"] .image-modal-dialog {
  background: #0d1729;
  border-color: rgba(148, 163, 184, 0.22);
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
}

[data-theme="dark"] .image-modal-close {
  background: rgba(8, 17, 31, 0.92);
  color: var(--text);
}


.image-modal-dialog img {
  width: 100%;
  height: min(78vh, 72vw);
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

[data-theme="dark"] .image-modal-dialog img {
  background: #08111f;
}

.whatsapp-float {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  z-index: 200;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.icon-list,
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: calc(1.45rem + 20px);
  gap: 0.8rem;
}

.icon-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: #1f2937;
  font-weight: 400;
  background: #ffffff;
}

.icon-list li {
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.icon-list li:hover,
.icon-list li:focus-visible {
  border-color: rgba(37, 99, 235, 0.38);
  color: var(--blue);
  transform: translateY(-1px);
}

.icon-list li.is-active {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(219, 234, 254, 0.55);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

[data-theme="dark"] .icon-list li {
  background: rgba(13, 23, 41, 0.88);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="dark"] .icon-list li.is-active {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.45);
  color: #eff6ff;
}

.icon-list li::before {
  content: "◦";
  margin-right: 0.55rem;
  color: var(--blue);
  font-size: 1.15rem;
}

.platform-grid,
.store-types,
.benefits-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.segments-carousel {
  margin-top: 2rem;
}

.segments-carousel-viewport {
  overflow: hidden;
}

.segments-carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.segments-carousel-page {
  flex: 0 0 300%;
  min-width: 300%;
}

.segments-carousel-page .store-types {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  row-gap: 0;
  transition: row-gap 0.35s ease, column-gap 0.35s ease, gap 0.35s ease;
}

.segments-carousel.is-animating-forward .segments-carousel-page.is-active .store-types,
.segments-carousel.is-animating-backward .segments-carousel-page.is-active .store-types {
  row-gap: 3.9rem;
  column-gap: 1.35rem;
}

.segments-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.card,
.benefit {
  padding: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.11);
}

.store-type-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.store-types {
  align-items: start;
  row-gap: 3.5rem;
}

.store-type-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.store-type-card.is-clickable img {
  cursor: zoom-in;
}

.store-type-card h3 {
  padding-inline: 0;
  margin: 0;
}

.store-type-card p {
  padding-inline: 0;
  margin: 0;
}

.store-type-card:hover {
  box-shadow: none;
}

[data-theme="dark"] .store-type-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin: 0.35rem 0;
  color: #374151;
}

[data-theme="dark"] .card ul li {
  color: var(--muted);
}

.card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.62rem;
}

.highlight-card {
  background-image: linear-gradient(150deg, #f8fbff, #f7fffc);
}

[data-theme="dark"] .highlight-card,
[data-theme="dark"] .pricing-card-featured {
  background-image:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.1), transparent 42%),
    linear-gradient(150deg, rgba(13, 23, 41, 0.94), rgba(9, 18, 33, 0.94));
}

.benefit p {
  margin-top: 0.45rem;
}

.technology-section,
.faq-section {
  position: relative;
}

.technology-section .section-heading {
  max-width: 780px;
}

.technology-section .section-heading p + p {
  margin-top: 0.9rem;
}

.solutions-showcase {
  margin-top: 2.4rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.solutions-slideshow {
  overflow: hidden;
}

.solutions-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.solutions-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(220px, calc(14vw + 60px)) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: stretch;
  padding-inline: max(1rem, calc((100vw - 1120px) / 2));
}

.solution-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.solution-panel-tall {
  min-height: 440px;
}

.solution-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 16, 0.04) 8%, rgba(3, 16, 16, 0.68) 100%);
}

.solution-panel-content {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 2;
  color: #ffffff;
}

.solution-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-panel h3 {
  display: none;
}

.solution-panel-tall h3 {
  max-width: 11ch;
}

.solution-panel-device::before {
  content: none;
}

.solution-panel-device::after {
  background:
    linear-gradient(180deg, rgba(3, 16, 16, 0.02) 14%, rgba(3, 16, 16, 0.62) 100%),
    linear-gradient(180deg, transparent 0%, transparent 48%, rgba(15, 23, 42, 0.42) 100%);
}

.platform-section .section-heading {
  max-width: 760px;
}

.operational-section {
  position: relative;
}

.operational-section .section-heading {
  max-width: 780px;
}

.operational-flow {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.operational-flow::before {
  content: "";
  position: absolute;
  top: 3rem;
  bottom: 3rem;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.24), rgba(37, 99, 235, 0.14));
  pointer-events: none;
}

.operational-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  backdrop-filter: blur(12px);
  z-index: 1;
}

.operational-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 36%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 32%);
  pointer-events: none;
}

.operational-card > * {
  position: relative;
  z-index: 1;
}

.operational-card-client,
.operational-card-channels,
.operational-card-management {
  width: min(100%, 760px);
  justify-self: center;
}

.operational-card-client {
  width: min(100%, 420px);
}

.operational-card-core {
  width: min(100%, 980px);
  justify-self: center;
  padding: 1.5rem;
  gap: 1.25rem;
}

.operational-card-client,
.operational-card-channels,
.operational-card-management {
  justify-items: center;
}

.operational-card-client .operational-step,
.operational-card-channels .operational-step,
.operational-card-core .operational-step,
.operational-card-management .operational-step {
  margin-inline: auto;
}

.operational-card-client .operational-card-copy,
.operational-card-channels .operational-card-copy,
.operational-card-core .operational-card-copy,
.operational-card-management .operational-card-copy {
  text-align: center;
}

.operational-card-channels .operational-chips,
.operational-card-management .operational-chips {
  justify-content: center;
}

.operational-core-main {
  display: grid;
  gap: 0.45rem;
}

.operational-card-copy h3,
.operational-production h4 {
  margin-bottom: 0.45rem;
}

.operational-step {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.16));
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.operational-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card .operational-chips li {
  display: inline-flex;
  position: static;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.4rem;
  padding: 0.62rem 0.88rem;
  padding-left: 0.88rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.88);
  color: #1f2937;
  font-size: 0.93rem;
  font-weight: 500;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.card .operational-chips li::before {
  content: none !important;
  display: none !important;
}

.operational-chip-icon {
  font-size: 1.15rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
  color: var(--blue);
}

.operational-connector {
  position: relative;
  width: 100%;
  height: 1.6rem;
  z-index: 1;
}

.operational-connector::before,
.operational-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.operational-connector::before {
  top: 0;
  bottom: 0.45rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.28), rgba(16, 185, 129, 0.32));
}

.operational-connector::after {
  bottom: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 1px solid rgba(37, 99, 235, 0.34);
  border-bottom: 1px solid rgba(37, 99, 235, 0.34);
  rotate: 45deg;
}

.operational-core {
  background-image:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.1), transparent 32%);
}

.operational-production {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.84));
}

.operational-production-header {
  display: grid;
  gap: 0.2rem;
}

.operational-production-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

[data-theme="dark"] .operational-flow::before {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.18), rgba(52, 211, 153, 0.22), rgba(96, 165, 250, 0.16));
}

[data-theme="dark"] .operational-card::before {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 38%),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.08), transparent 34%);
}

[data-theme="dark"] .operational-step {
  color: #eff6ff;
  border-color: rgba(96, 165, 250, 0.2);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(16, 185, 129, 0.18));
}

[data-theme="dark"] .operational-chips li {
  background: rgba(8, 17, 31, 0.74);
  border-color: rgba(148, 163, 184, 0.18);
  color: var(--text);
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.22);
}

[data-theme="dark"] .operational-chip-icon {
  color: #93c5fd;
}

[data-theme="dark"] .operational-connector::before {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.34), rgba(52, 211, 153, 0.3));
}

[data-theme="dark"] .operational-connector::after {
  border-color: rgba(96, 165, 250, 0.4);
}

[data-theme="dark"] .operational-production {
  border-color: rgba(96, 165, 250, 0.16);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.86), rgba(13, 23, 41, 0.72));
}

.platform-grid {
  margin-top: 2rem;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.platform-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.4rem;
  overflow: hidden;
}

.platform-card::before,
.platform-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 30%);
  pointer-events: none;
}

.platform-card > *,
.platform-callout > * {
  position: relative;
  z-index: 1;
}

.platform-card-icon {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.16));
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--blue);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.12);
}

.platform-card-icon .material-symbols-outlined {
  font-size: 2.25rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.platform-card h3,
.platform-callout h3 {
  margin-bottom: 0.1rem;
}

.platform-card p {
  color: var(--muted);
}

.platform-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.platform-feature-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.58rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  background: rgba(255, 255, 255, 0.88);
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.platform-feature-list li::before {
  content: none !important;
}

[data-theme="dark"] .platform-feature-list li {
  background: rgba(13, 23, 41, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.28);
}

.platform-callout {
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.45rem;
  overflow: hidden;
}

.platform-callout-kicker {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-callout-copy p:last-child {
  color: var(--muted);
}

.platform-callout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.platform-callout-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.75), rgba(209, 250, 229, 0.68));
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
}

[data-theme="dark"] .platform-callout-badges span {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(16, 185, 129, 0.2));
  border-color: rgba(96, 165, 250, 0.22);
  color: #eff6ff;
}

.faq-item p,
.pricing-description,
.pricing-note,
.download-note {
  color: var(--muted);
}

.faq-grid {
  margin-top: 1.8rem;
}

.faq-item {
  min-height: 100%;
}

.social-proof-carousel {
  margin-top: 2.4rem;
}

.social-proof-carousel-viewport {
  overflow: hidden;
}

.social-proof-carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.social-proof-carousel-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.social-proof-story-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
}

.social-proof-story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
}

.social-proof-story-content {
  padding: 1.25rem 1.25rem 1.4rem;
}

.social-proof-story-content h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.social-proof-story-content p { margin-top: 0.8rem; }

.social-proof-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-proof-carousel-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
  border-color: rgba(37, 99, 235, 0.24);
}

[data-theme="dark"] .social-proof-carousel-arrow {
  background: rgba(13, 23, 41, 0.94);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.28);
}

.pricing-section {
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) + 8px);
  background: transparent;
  pointer-events: none;
}

.pricing-section > * {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.pricing-card-featured {
  border-color: rgba(37, 99, 235, 0.35);
  background-image:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 38%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.1), transparent 42%);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
}

.pricing-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0.7rem 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-description { margin: 0; }

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.55rem;
}

.pricing-list li {
  color: #374151;
  font-weight: 400;
}

.pricing-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 0.5rem;
}

.pricing-note { font-size: 0.9rem; margin-top: 0.8rem; }

.pricing-support {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 500;
}

.download-note { margin-top: 1rem; font-size: 0.9rem; }

.cta {
  text-align: center;
  border: none;
  border-radius: calc(var(--radius) + 4px);
  background-image: none;
}

.cta h2 {
  margin-inline: auto;
}

.cta .hero-actions {
  justify-content: center;
}

.download-section {
  text-align: center;
}

.download-card {
  max-width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.download-card > * {
  width: 100%;
}

.download-card h2 {
  max-width: 18ch;
}

.download-lead {
  max-width: 66ch;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.download-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.5rem auto 0;
  max-width: 100%;
}

.download-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.download-step strong {
  font-weight: 500;
  color: var(--text);
}

.download-step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, var(--blue), #0f5ddd);
  color: #ffffff;
  font-weight: 800;
}

.download-highlight {
  margin: 1.2rem auto 0;
  max-width: 66ch;
  color: var(--text);
  font-weight: 700;
}

.download-actions {
  justify-content: center;
}

.download-actions .btn {
  min-width: min(100%, 280px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.5rem;
}

.site-footer p {
  font-size: 0.95rem;
}

.bg-orb {
  position: fixed;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.27;
  pointer-events: none;
  z-index: -1;
}

.orb-blue {
  background: radial-gradient(circle at 30% 30%, #93c5fd, #dbeafe 55%, transparent 75%);
  top: -20vmax;
  right: -15vmax;
}

.orb-green {
  background: radial-gradient(circle at 30% 30%, #6ee7b7, #d1fae5 55%, transparent 75%);
  bottom: -22vmax;
  left: -14vmax;
}

[data-theme="dark"] .orb-blue {
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.48), rgba(59, 130, 246, 0.22) 55%, transparent 75%);
}

[data-theme="dark"] .orb-green {
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.42), rgba(52, 211, 153, 0.18) 55%, transparent 75%);
}

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

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

@media (min-width: 760px) {
  .nav-links {
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    position: static;
    right: auto;
    top: auto;
    z-index: auto;
    display: none;
  }

  .theme-toggle {
    right: 50px;
  }

  nav.is-open .nav-links {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    width: auto;
  }

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

  .hero-layout {
    align-items: center;
    padding-top: 72px;
    padding-bottom: 0;
  }

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

  .platform-callout {
    grid-template-columns: minmax(0, 1.35fr) auto;
  }

  .platform-callout-badges {
    justify-content: flex-end;
  }

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

  .segments-carousel-page {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .segments-carousel-page .store-types {
    row-gap: 3.5rem;
  }

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

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

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

  .operational-card {
    padding: 1.55rem 1.7rem;
  }

  .operational-card-channels,
  .operational-card-core {
    gap: 1.2rem;
  }

  .operational-card-core {
    justify-items: center;
  }

  .operational-card-core .operational-production {
    grid-column: 1 / -1;
    width: 100%;
  }

  .operational-production {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    align-items: start;
    gap: 1rem 1.15rem;
  }
}

@media (min-width: 1024px) {
  .section,
  .hero {
    padding: 6rem 0;
  }

  .hero {
    padding-top: 0;
  }

  .hero-layout {
    padding-top: 72px;
    padding-bottom: 0;
  }

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

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

@media (max-width: 759px) {
  .hero-layout {
    min-height: 100svh;
    height: 100svh;
    padding-top: 72px;
    padding-bottom: 0;
    align-items: center;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-content .hero-lead {
    max-width: 28ch;
    font-size: 0.98rem;
  }

  .hero .hero-actions {
    width: 100%;
  }

  .hero .btn {
    width: 100%;
  }

  .nav-cta-item {
    margin-top: 0.25rem;
  }

  .nav-cta {
    width: 100%;
  }

  .platform-card,
  .platform-callout {
    padding: 1.25rem;
  }

  .platform-feature-list {
    gap: 0.6rem;
  }

  .platform-feature-list li,
  .platform-callout-badges span {
    font-size: 0.84rem;
  }

  .solutions-showcase {
    margin-top: 1.8rem;
    width: auto;
    margin-left: 0;
  }

  .solutions-showcase + .icon-list {
    margin-top: calc(1.15rem + 20px);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding-inline: 0.85rem;
  }

  .solutions-grid > .solution-panel {
    min-height: 0;
    border-radius: 14px;
  }

  .solutions-grid > .solution-panel:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .solutions-grid > .solution-panel:nth-child(2) {
    grid-column: 1;
    aspect-ratio: 1 / 1;
  }

  .solutions-grid > .solution-panel:nth-child(3) {
    grid-column: 2;
    aspect-ratio: 1 / 1;
  }

  .solutions-grid > .solution-panel img {
    object-position: center;
  }

  .solutions-grid > .solution-panel:first-child img,
  .solutions-grid > .solution-panel:nth-child(3) img {
    object-position: center top;
  }

  .solution-panel-content {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .solution-kicker {
    padding: 0.32rem 0.58rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .icon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: calc(1.15rem + 20px);
    gap: 0.65rem;
    align-items: stretch;
  }

  .icon-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .operational-flow {
    gap: 0.9rem;
  }

  .operational-flow::before {
    top: 2.6rem;
    bottom: 2.6rem;
  }

  .operational-card,
  .operational-card-client,
  .operational-card-management,
  .operational-card-core {
    width: 100%;
  }

  .operational-card {
    padding: 1.15rem;
  }

  .operational-chips {
    gap: 0.55rem;
  }

  .operational-chips li {
    min-height: 2.2rem;
    padding: 0.55rem 0.78rem;
    font-size: 0.89rem;
  }

  .operational-production {
    padding: 0.9rem;
  }
}

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

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

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