:root {
  color-scheme: dark;
  --bg: #09090b;
  --panel: #18181b;
  --panel-soft: #202024;
  --panel-strong: #101113;
  --text: #f4f6fb;
  --muted: #aeb6c5;
  --line: #32343b;
  --accent: #39d39f;
  --accent-strong: #18b87d;
  --amber: #d08a28;
  --danger: #ff7777;
  --header-bg: rgba(9, 9, 11, .82);
  --soft-bg: rgba(255, 255, 255, .04);
  --chip-bg: rgba(255, 255, 255, .045);
  --chip-border: rgba(255, 255, 255, .1);
  --field-bg: #08090b;
  --button-text: #06100c;
  --body-gradient:
    radial-gradient(circle at 18% 8%, rgba(57, 211, 159, .13), transparent 24rem),
    radial-gradient(circle at 78% 26%, rgba(208, 138, 40, .08), transparent 26rem);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-soft: #eef3f8;
  --panel-strong: #ffffff;
  --text: #151922;
  --muted: #465162;
  --line: #d7dde7;
  --accent: #16b981;
  --accent-strong: #0f9969;
  --amber: #b96e12;
  --danger: #c93434;
  --header-bg: rgba(245, 247, 251, .88);
  --soft-bg: rgba(18, 24, 33, .045);
  --chip-bg: rgba(16, 28, 42, .072);
  --chip-border: rgba(16, 28, 42, .18);
  --field-bg: #ffffff;
  --button-text: #04120d;
  --body-gradient:
    radial-gradient(circle at 18% 8%, rgba(22, 185, 129, .16), transparent 24rem),
    radial-gradient(circle at 78% 26%, rgba(185, 110, 18, .1), transparent 26rem);
  --shadow: 0 22px 55px rgba(24, 35, 51, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--body-gradient), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .96rem;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(57, 211, 159, .85);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: .75rem;
  z-index: 20;
  transform: translateY(-200%);
  background: var(--accent);
  color: #06100c;
  padding: .7rem 1rem;
  border-radius: .45rem;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.header-tools,
.hero-actions,
.benefit-strip,
.preview-topbar,
.preview-metrics,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: .7rem;
  min-height: 2.75rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: .45rem;
  background: linear-gradient(145deg, #0d5846, #1e8f71);
  color: #eafff7;
  border: 1px solid rgba(57, 211, 159, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.nav {
  gap: .25rem;
}

.nav a,
.header-action,
.theme-toggle {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: .45rem;
  padding: .55rem .8rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
}

.nav a:hover,
.header-action:hover,
.theme-toggle:hover {
  color: var(--text);
  background: var(--soft-bg);
}

.header-tools {
  gap: .55rem;
}

.header-action {
  color: var(--button-text);
  background: var(--accent);
}

.theme-toggle {
  justify-content: center;
  width: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--soft-bg);
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.theme-toggle .p-button-icon {
  color: var(--accent);
  font-family: primeicons;
  font-size: 1rem;
  line-height: 1;
}

.pi-sun::before {
  content: "\e9c7";
}

.pi-moon::before {
  content: "\e9c8";
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  scroll-margin-top: 6rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 22ch;
  font-size: clamp(1.72rem, 2.85vw, 2.45rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.45vw, 2.2rem);
}

h3 {
  font-size: 1rem;
}

.lead {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
}

.hero-actions {
  gap: .85rem;
  flex-wrap: wrap;
  margin: 1.35rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: .45rem;
  padding: .78rem 1.05rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.button-primary {
  background: var(--accent);
  color: var(--button-text);
}

.button-primary:hover {
  background: #53e4b3;
}

.button-secondary {
  border-color: var(--line);
  background: var(--soft-bg);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(57, 211, 159, .55);
}

.benefit-strip {
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.benefit-strip li,
.benefits-grid span,
.capability-grid span {
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text);
  border-radius: .45rem;
}

:root[data-theme="light"] .benefit-strip li,
:root[data-theme="light"] .benefits-grid span,
:root[data-theme="light"] .capability-grid span {
  color: #18202b;
  font-weight: 800;
}

.benefit-strip li {
  padding: .62rem .75rem;
  font-size: .9rem;
}

.product-preview,
.wide-card,
.feature-panel,
.contact-form,
.contact-card,
.cards article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel) 96%, transparent), color-mix(in srgb, var(--panel-strong) 96%, transparent));
  box-shadow: var(--shadow);
}

.product-preview {
  position: relative;
  isolation: isolate;
  overflow: visible;
  min-height: auto;
  margin: 0;
  padding: .65rem;
  justify-self: end;
  width: min(620px, 48vw);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) rotateZ(-.5deg);
  transform-origin: center right;
  transition: transform .35s ease, box-shadow .35s ease;
}

.product-preview:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) rotateZ(-.25deg) translateY(-5px);
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: -.8rem;
  z-index: -2;
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(57, 211, 159, .38), transparent 32%),
    linear-gradient(315deg, rgba(208, 138, 40, .18), transparent 34%);
  opacity: .7;
  filter: blur(4px);
}

.product-preview__glow {
  position: absolute;
  inset: 12% 2% -10% 16%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(57, 211, 159, .24);
  filter: blur(46px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1165 / 709;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--panel-soft);
  box-shadow:
    0 46px 110px rgba(0, 0, 0, .46),
    0 16px 34px rgba(0, 0, 0, .26);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(1.25rem) scale(.985);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide-controls {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin-top: .9rem;
}

:root[data-theme="light"] .hero-slider {
  box-shadow:
    0 38px 85px rgba(35, 49, 72, .18),
    0 12px 28px rgba(35, 49, 72, .13);
}

@media (min-width: 1180px) {
  .product-preview {
    width: min(660px, 50vw);
    margin-right: 0;
  }
}

@media (max-width: 1120px) {
  .product-preview {
    width: min(520px, 47vw);
    transform: perspective(1100px) rotateY(-3deg) rotateX(1.5deg) rotateZ(-.25deg);
  }

  .product-preview:hover {
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg) rotateZ(-.3deg) translateY(-4px);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.split > p,
.section-heading p,
.contact-copy p,
.split p {
  color: var(--muted);
  margin: 1rem 0 0;
}

.feature-panel,
.wide-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.wide-card {
  grid-column: 1 / -1;
}

.document-workflow {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.workflow-copy p {
  color: var(--muted);
  margin: .85rem 0 0;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.workflow-board div {
  min-height: 11rem;
  display: grid;
  align-content: start;
  gap: .55rem;
  padding: 1rem;
  border: 1px solid var(--chip-border);
  border-radius: .5rem;
  background: var(--chip-bg);
}

.workflow-board i {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .45rem;
  background: rgba(57, 211, 159, .13);
  color: var(--accent);
  font-family: primeicons;
  font-style: normal;
}

.workflow-board strong {
  color: var(--text);
  line-height: 1.25;
}

.workflow-board span {
  color: var(--muted);
}

:root[data-theme="light"] .workflow-board strong {
  color: #18202b;
}

:root[data-theme="light"] .workflow-board span {
  color: #465162;
}

:root[data-theme="light"] .workflow-board i {
  background: rgba(22, 185, 129, .14);
}

.check-list,
.columns,
.benefits-grid,
.capability-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: .7rem;
}

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

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #d7dce6;
}

:root[data-theme="light"] .check-list li {
  color: #202a37;
  font-weight: 700;
}

:root[data-theme="light"] .feature-panel p,
:root[data-theme="light"] .wide-card p,
:root[data-theme="light"] .cards p,
:root[data-theme="light"] .faq-list p,
:root[data-theme="light"] .custom-copy p,
:root[data-theme="light"] .contact-copy p,
:root[data-theme="light"] .split p {
  color: #465162;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .8rem;
  height: .8rem;
  border-radius: .25rem;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(57, 211, 159, .12);
}

.capability-grid,
.benefits-grid,
.cards {
  display: grid;
  gap: 1rem;
}

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

.capability-grid span,
.benefits-grid span {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  padding: .9rem;
  font-weight: 750;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, .07);
  background: var(--soft-bg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.access-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.access-visual {
  margin: 0;
}

.access-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.access-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 1rem 0 0;
}

.access-steps {
  display: grid;
  gap: 1.45rem;
  margin-top: 2rem;
}

.access-steps article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.access-steps article > span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(57, 211, 159, .14);
  color: var(--accent);
  font-weight: 900;
}

.access-steps h3 {
  margin-top: .15rem;
}

.access-steps p {
  color: var(--muted);
  margin: .45rem 0 0;
}

:root[data-theme="light"] .access-copy > p:not(.eyebrow),
:root[data-theme="light"] .access-steps p {
  color: #465162;
}

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

.showcase-dot {
  width: 2.75rem;
  height: .7rem;
  border: 0;
  border-radius: 999px;
  background: var(--chip-border);
  cursor: pointer;
}

.showcase-dot.is-active {
  background: var(--accent);
}

.cards article {
  min-height: 12rem;
  padding: 1.35rem;
  box-shadow: none;
}

.cards article h3 {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .45rem;
  background: rgba(57, 211, 159, .13);
  color: var(--accent);
  font-family: primeicons;
  font-size: 1rem;
}

:root[data-theme="light"] .card-icon {
  background: rgba(22, 185, 129, .14);
}

.cards p {
  color: var(--muted);
  margin: .75rem 0 0;
}

.solution-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 1rem 0 0;
}

.solution-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin-top: 1.8rem;
}

.solution-checks span {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-weight: 750;
}

.solution-checks span::before {
  content: "\e909";
  position: absolute;
  left: 0;
  top: .1rem;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(57, 211, 159, .14);
  color: var(--accent);
  font-family: primeicons;
  font-size: .68rem;
}

:root[data-theme="light"] .solution-checks span,
:root[data-theme="light"] .solution-copy > p:not(.eyebrow) {
  color: #465162;
}

.solution-visual {
  margin: 0;
}

.solution-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.benefits-section .benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.benefits-section .benefits-grid span {
  position: relative;
  min-height: auto;
  align-items: flex-start;
  padding: .1rem .2rem .1rem 2.25rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
}

.benefits-section .benefits-grid span::before {
  content: "\e909";
  position: absolute;
  left: 0;
  top: .05rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(57, 211, 159, .14);
  color: var(--accent);
  font-family: primeicons;
  font-size: .72rem;
}

:root[data-theme="light"] .benefits-section .benefits-grid span {
  color: #465162;
}

.benefits-visual {
  margin: 0;
}

.benefits-visual img {
  display: block;
  width: 100%;
  height: auto;
}

:root[data-theme="dark"] .benefits-visual img {
  opacity: .86;
}

.faq-list {
  display: grid;
  gap: .8rem;
  max-width: 900px;
}

.faq-list details {
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  min-height: 3.6rem;
  padding: 1rem 1.25rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: .45rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  font-style: normal;
  box-shadow: none;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--accent);
  text-decoration: none;
}

.map-card {
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: clamp(220px, 28vw, 360px);
  border: 0;
  filter: saturate(.92) contrast(.98);
}

.contact-form {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.form-heading {
  margin-bottom: 1.25rem;
}

.form-heading p {
  margin: .45rem 0 0;
  color: var(--muted);
}

.form-row {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: .4rem;
  color: #dce2ed;
  font-weight: 800;
}

:root[data-theme="light"] label,
:root[data-theme="light"] .consent label {
  color: #202a37;
}

:root[data-theme="light"] .form-heading p,
:root[data-theme="light"] .rodo-info,
:root[data-theme="light"] .tech-note {
  color: #465162;
}

input,
textarea {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid #4a4c55;
  border-radius: .4rem;
  background: var(--field-bg);
  color: var(--text);
  padding: .75rem .85rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.consent {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: .7rem;
  align-items: start;
  margin-top: .35rem;
}

.consent input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: auto;
  margin-top: .22rem;
  accent-color: var(--accent);
}

.consent label {
  margin: 0;
  font-weight: 650;
  color: #d8dde6;
}

.consent a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.site-footer a {
  color: var(--accent);
}

.error,
.success {
  min-height: 1.35rem;
  margin: .35rem 0 0;
  font-size: .92rem;
  font-weight: 750;
}

.error {
  color: var(--danger);
}

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

.rodo-info,
.tech-note {
  color: var(--muted);
  font-size: .9rem;
}

.tech-note {
  border-left: 3px solid var(--amber);
  padding-left: .8rem;
}

.form-submit {
  width: 100%;
  margin-top: .4rem;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .benefits-section,
  .access-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: 18ch;
  }

  .capability-grid,
  .benefits-grid,
  .cards.three,
  .cards.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-workflow {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  .header-action {
    display: none;
  }

  .section {
    width: min(100% - 1rem, 1180px);
    padding: 2.75rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

  h1,
  h2 {
    max-width: none;
  }

  .lead {
    font-size: .96rem;
  }

  .benefit-strip {
    gap: .55rem;
  }

  .hero-actions .button,
  .preview-metrics,
  .document-row {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .product-preview {
    min-height: auto;
    padding: .35rem;
    width: 100%;
    transform: none;
  }

  .product-preview:hover {
    transform: none;
  }

  .product-preview::before {
    inset: -.35rem;
  }

  .columns,
  .workflow-board,
  .access-steps article,
  .solution-checks,
  .capability-grid,
  .benefits-grid,
  .benefits-section .benefits-grid,
  .cards.three,
  .cards.six {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    aspect-ratio: 4 / 3;
  }

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