/* =========================================================
   Pomocník — landing design system (self-contained)
   ========================================================= */
:root {
  --ink: #0b1526;
  --ink-2: #1f2a3d;
  --muted: #5c6b7d;
  --muted-2: #8b98a8;
  --line: rgba(11, 21, 38, .1);
  --line-soft: rgba(11, 21, 38, .06);
  --bg: #f6f9fc;
  --white: #ffffff;
  --brand: #0ea371;
  --brand-2: #0e9de0;
  --brand-grad: linear-gradient(135deg, #0ea371 0%, #14b97f 45%, #0e9de0 100%);
  --brand-grad-soft: linear-gradient(135deg, rgba(14, 163, 113, .12), rgba(14, 157, 224, .12));
  --violet: #8b5cf6;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --font-display: 'Plus Jakarta Sans', 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Public Sans', system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(11, 21, 38, .05), 0 6px 16px -8px rgba(11, 21, 38, .08);
  --shadow-md: 0 14px 34px -14px rgba(11, 21, 38, .18);
  --shadow-lg: 0 34px 70px -24px rgba(11, 21, 38, .28);
  --shadow-brand: 0 16px 40px -14px rgba(14, 163, 113, .55);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.16;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

a { color: var(--brand); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: rgba(14, 163, 113, .2); }

.grecaptcha-badge { visibility: hidden; }
[id] { scroll-margin-top: 96px; }

/* ---------- Layout / grid ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gx, 0) / -2);
  margin-left: calc(var(--gx, 0) / -2);
  margin-top: calc(-1 * var(--gy, 0));
}
.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gx, 0) / 2);
  padding-left: calc(var(--gx, 0) / 2);
  margin-top: var(--gy, 0);
}
.row.g-2 { --gx: .6rem; --gy: .6rem; }
.row.g-3 { --gx: 1rem; --gy: 1rem; }
.row.g-4 { --gx: 1.5rem; --gy: 1.5rem; }
.row.g-5 { --gx: 2.25rem; --gy: 2.25rem; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.3333%; }
  .col-md-6 { width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-4 { width: 33.3333%; }
  .col-lg-5 { width: 41.6667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.3333%; }
  .col-lg-8 { width: 66.6667%; }
}
@media (min-width: 1200px) {
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.3333%; }
  .col-xl-6 { width: 50%; }
}

/* ---------- Utilities ---------- */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-none { display: none !important; }
.d-grid { display: grid !important; }
@media (min-width: 576px) {
  .d-sm-inline-flex { display: inline-flex !important; }
  .d-sm-flex { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-flex { display: flex !important; }
  .d-lg-none { display: none !important; }
}

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-column { flex-direction: column !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2.5rem !important; }
@media (min-width: 992px) { .gap-lg-4 { gap: 1.5rem !important; } .gap-lg-5 { gap: 2.5rem !important; } }

.m-0 { margin: 0 !important; }
.mt-1 { margin-top: .25rem !important; } .mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; } .mt-4 { margin-top: 1.5rem !important; } .mt-5 { margin-top: 2.5rem !important; }
.mb-1 { margin-bottom: .25rem !important; } .mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; } .mb-4 { margin-bottom: 1.5rem !important; } .mb-5 { margin-bottom: 2.5rem !important; }
.mx-auto { margin-inline: auto !important; }
.me-1 { margin-right: .25rem !important; } .me-2 { margin-right: .5rem !important; }
.ms-1 { margin-left: .25rem !important; } .ms-2 { margin-left: .5rem !important; }
.my-2 { margin-block: .5rem !important; } .my-4 { margin-block: 1.5rem !important; }

.p-0 { padding: 0 !important; }
.p-2 { padding: .5rem !important; } .p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; } .p-5 { padding: 2.5rem !important; }
.px-2 { padding-inline: .5rem !important; } .px-3 { padding-inline: 1rem !important; }
.px-4 { padding-inline: 1.5rem !important; } .px-5 { padding-inline: 2.5rem !important; }
.py-2 { padding-block: .5rem !important; } .py-3 { padding-block: 1rem !important; }
.py-4 { padding-block: 1.5rem !important; } .py-5 { padding-block: 2.5rem !important; }
.pt-3 { padding-top: 1rem !important; } .pt-5 { padding-top: 2.5rem !important; }
.pb-0 { padding-bottom: 0 !important; } .pb-3 { padding-bottom: 1rem !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.text-center { text-align: center !important; }
.text-lg-end { text-align: right !important; }
.text-muted { color: var(--muted) !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-normal { font-weight: 400 !important; }
.small { font-size: .85em; }
.text-uppercase { text-transform: uppercase !important; }
.sticky-top { position: sticky; top: 0; z-index: 1000; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease,
    border-color .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.04rem; }
.btn-sm { padding: .55rem 1rem; font-size: .84rem; }

.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -14px rgba(14, 163, 113, .65); }
.btn-outline-primary {
  background: transparent;
  color: var(--brand);
  border-color: rgba(14, 163, 113, .45);
}
.btn-outline-primary:hover { background: rgba(14, 163, 113, .08); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--ink-2);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-label-primary { background: rgba(14, 163, 113, .1); color: #0b7f56; }
.btn-label-primary:hover { background: rgba(14, 163, 113, .16); }
.btn-label-secondary { background: #e9eef3; color: var(--ink-2); }
.btn-label-secondary:hover { background: #dde4eb; }

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  padding: .45rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge.bg-success { background: rgba(14, 163, 113, .12); color: #0b7f56; }
.badge.bg-primary { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-brand); }
.badge.bg-label-primary { background: rgba(14, 157, 224, .12); color: #08679a; }

/* ---------- Forms ---------- */
.form-label {
  display: block;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink-2);
  margin-bottom: .4rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: .78rem 1.05rem;
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus {
  outline: none;
  border-color: rgba(14, 163, 113, .55);
  box-shadow: 0 0 0 4px rgba(14, 163, 113, .12);
}
.form-control::placeholder { color: var(--muted-2); }
.input-group { display: flex; }
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: #f1f5f8;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  font-size: .88rem;
  color: var(--muted);
  white-space: nowrap;
}
.input-group .form-control { border-radius: 0 14px 14px 0; }

/* ---------- Alert ---------- */
.alert {
  position: relative;
  padding: .95rem 1.2rem;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.alert-primary { background: rgba(14, 163, 113, .1); color: #0b7f56; border: 1px solid rgba(14, 163, 113, .28); }
.alert-dismissible { padding-right: 3rem; }
.alert-dismissible .btn-close { position: absolute; top: 50%; right: .9rem; transform: translateY(-50%); }
.error { color: #dc2626; display: none; font-weight: 600; }

/* ---------- Close button ---------- */
.btn-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #eef2f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 14 14'%3E%3Cpath d='M2 2 L12 12 M12 2 L2 12' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: background-color .15s ease;
}
.btn-close:hover { background-color: #e2e8ee; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1055; display: none; overflow-y: auto; padding: 1rem; }
.modal.show { display: block; }
body.modal-open { overflow: hidden; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(11, 21, 38, .55);
  backdrop-filter: blur(4px);
}
.modal-backdrop.fade { opacity: 0; transition: opacity .25s ease; }
.modal-backdrop.show { opacity: 1; }
.modal-dialog { position: relative; margin: 2.5rem auto; max-width: 520px; pointer-events: none; }
.modal-dialog.modal-lg { max-width: 880px; }
.modal-dialog-centered { display: flex; align-items: center; min-height: calc(100% - 5rem); }
.modal-content {
  pointer-events: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.7rem;
  border-bottom: 1px solid var(--line-soft);
}
.modal-title { margin: 0; font-size: 1.35rem; font-weight: 800; }
.modal-body { padding: 1.7rem; }
.modal.fade .modal-dialog {
  transform: translateY(22px) scale(.98);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2, .7, .2, 1), opacity .28s ease;
}
.modal.show .modal-dialog { transform: none; opacity: 1; }

/* ---------- Popover ---------- */
.popover {
  position: absolute;
  z-index: 1070;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  color: var(--ink);
  padding: 1rem 1.15rem;
}
.popover .popover-arrow { display: none; }
.popover-body ul { margin: 0; padding-left: 1.1rem; }
.popover-body li { margin-bottom: .35rem; }

/* ---------- Tabs ---------- */
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: tabIn .4s ease both; }
@keyframes tabIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
}
.nav-brand { display: inline-flex; align-items: center; gap: .65rem; }
.nav-brand img { height: 38px; width: auto; filter: drop-shadow(0 4px 10px rgba(14, 163, 113, .28)); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.brand-name.is-light { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  position: relative;
  padding-block: .25rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: var(--brand-grad);
  transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  color: var(--ink-2);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .65rem .25rem; color: var(--ink-2); font-weight: 600; font-size: .95rem; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: .75rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 21, 38, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(65% 60% at 72% 18%, #000, transparent);
  mask-image: radial-gradient(65% 60% at 72% 18%, #000, transparent);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 50% at 88% 6%, rgba(14, 157, 224, .16), transparent 62%),
    radial-gradient(48% 46% at 6% 30%, rgba(14, 163, 113, .18), transparent 60%),
    radial-gradient(40% 42% at 55% 100%, rgba(139, 92, 246, .1), transparent 62%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0b7f56;
  background: rgba(14, 163, 113, .1);
  border: 1px solid rgba(14, 163, 113, .22);
  padding: .45rem .9rem;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-grad);
}
.eyebrow.is-blue { color: #08679a; background: rgba(14, 157, 224, .1); border-color: rgba(14, 157, 224, .22); }
.eyebrow.is-blue::before { background: linear-gradient(135deg, #0e9de0, #8b5cf6); }

.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
.hero-title .grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}
.hero-check { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; font-weight: 600; }
.hero-check i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--brand-grad);
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
}

/* hero mockup */
.hero-mock { position: relative; }
.hero-mock-glow {
  position: absolute;
  inset: -6% -4%;
  background: radial-gradient(60% 55% at 50% 40%, rgba(14, 163, 113, .28), transparent 68%),
    radial-gradient(45% 45% at 78% 70%, rgba(14, 157, 224, .26), transparent 65%);
  filter: blur(24px);
  z-index: 0;
}
.hero-mock-frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px);
}
.hero-mock-frame img { width: 100%; height: auto; }
.hero-mock-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1rem;
  background: #f6f9fc;
  border-bottom: 1px solid var(--line-soft);
}
.hero-mock-bar span { width: 10px; height: 10px; border-radius: 50%; }
.hero-mock-bar span:nth-child(1) { background: #ff5f57; }
.hero-mock-bar span:nth-child(2) { background: #febc2e; }
.hero-mock-bar span:nth-child(3) { background: #28c840; }
.hero-mock-bar small { margin-left: auto; color: var(--muted-2); font-size: .72rem; font-weight: 600; }

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: .8rem 1.05rem;
  animation: floaty 6s ease-in-out infinite;
}
.float-card.is-2 { animation-delay: -3s; }
.float-card .fc-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--brand-grad);
}
.float-card .fc-icon.is-sky { background: linear-gradient(135deg, #0e9de0, #7c6cf0); }
.float-card .fc-title { font-weight: 700; font-size: .86rem; line-height: 1.25; }
.float-card .fc-sub { color: var(--muted); font-size: .76rem; }
.float-card.fc-tr { top: 26px; right: -18px; }
.float-card.fc-bl { bottom: -24px; left: -6%; }
@media (max-width: 1199.98px) {
  .float-card.fc-tr { right: 4px; }
  .float-card.fc-bl { left: 2%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* hero metrics */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.75rem; }
.metric-card {
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.metric-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.metric-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-label { color: var(--muted); font-size: .84rem; margin-top: .45rem; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 5.5rem 0; }
.section-alt { background: #fff; }
.section-tint { background: linear-gradient(180deg, var(--bg), #fff 40%, var(--bg)); }

.sec-head { max-width: 680px; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; margin: 1rem 0 .75rem; }
.sec-sub { color: var(--muted); font-size: 1.02rem; margin: 0; }

/* ---------- Logo marquee ---------- */
.logo-section { padding: 2.5rem 0 3.5rem; }
.logo-label { text-align: center; color: var(--muted-2); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 4rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; justify-content: center; }
.marquee-item img {
  height: 46px;
  width: auto;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease;
}
.marquee-item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Feature cards ---------- */
.feature-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(14, 163, 113, .35); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  color: #fff;
  background: var(--brand-grad);
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 22px -8px rgba(14, 163, 113, .5);
}
.feature-icon.is-sky { background: linear-gradient(135deg, #0e9de0, #7c6cf0); box-shadow: 0 10px 22px -8px rgba(14, 157, 224, .5); }
.feature-icon.is-violet { background: linear-gradient(135deg, #8b5cf6, #d946ef); box-shadow: 0 10px 22px -8px rgba(139, 92, 246, .5); }
.feature-icon.is-amber { background: linear-gradient(135deg, #f59e0b, #f97316); box-shadow: 0 10px 22px -8px rgba(245, 158, 11, .5); }
.feature-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Module tabs + panels ---------- */
.module-tabs { display: flex; gap: .5rem; overflow-x: auto; padding: 0 0 .5rem; margin: 0; list-style: none; scrollbar-width: none; }
.module-tabs::-webkit-scrollbar { display: none; }
.mtab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
}
.mtab:hover { color: var(--ink); border-color: rgba(14, 163, 113, .4); }
.mtab.active { color: #fff; background: var(--brand-grad); border-color: transparent; box-shadow: var(--shadow-brand); }

.module-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.module-shot { background: #eef3f8; position: relative; overflow: hidden; }
.module-shot img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: top left; display: block; }
.module-body { padding: 2.5rem; }
.module-body h3 { font-size: 1.5rem; margin-bottom: .9rem; }
.module-body > p { color: var(--muted); }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .92rem;
}
.check-list .ck {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(14, 163, 113, .12);
  color: #0b7f56;
  font-weight: 800;
  font-size: .72rem;
  display: inline-grid;
  place-items: center;
  margin-top: .1rem;
}

/* ---------- Workflow ---------- */
.workflow-item {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.workflow-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.workflow-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: var(--brand-grad);
  box-shadow: 0 10px 20px -8px rgba(14, 163, 113, .5);
  margin-bottom: 1.1rem;
}
.workflow-item h5 { font-size: 1.02rem; margin-bottom: .5rem; }
.workflow-item p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: inline-flex;
  background: #e9eef3;
  border-radius: 999px;
  padding: .3rem;
  gap: .2rem;
}
.billing-toggle button {
  border: none;
  background: transparent;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s ease;
}
.billing-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.is-featured {
  background: linear-gradient(180deg, rgba(14, 163, 113, .05), #fff 34%);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.price-card.is-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--brand-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-brand);
  white-space: nowrap;
}
.price-name { font-size: 1.15rem; font-weight: 800; margin: 0; }
.price-line { display: flex; align-items: baseline; gap: .5rem; margin: 1.1rem 0 .25rem; }
.price-value { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.price-value .cur { font-size: 1.5rem; font-weight: 700; color: var(--muted-2); }
.price-note { color: var(--muted); font-size: .84rem; }
.price-feats { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; flex-grow: 1; }
.price-feats li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; color: var(--muted); font-size: .9rem; }
.price-feats .ck { color: #0b7f56; font-weight: 800; margin-top: .05rem; }
.price-help {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: .3rem;
  border: none;
  border-radius: 50%;
  background: #e9eef3;
  color: var(--muted);
  font-weight: 800;
  font-size: .75rem;
  cursor: help;
  vertical-align: 2px;
}
.price-help:hover { background: rgba(14, 163, 113, .15); color: #0b7f56; }
.price-save { display: inline-block; margin-top: .35rem; font-size: .78rem; font-weight: 700; color: #0b7f56; }

/* ---------- Contact panel ---------- */
.contact-panel {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b1526 0%, #0e2a2e 55%, #0b3552 100%);
  color: #fff;
  overflow: hidden;
  padding: 3.2rem;
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 92% 12%, rgba(14, 163, 113, .4), transparent 60%),
    radial-gradient(40% 50% at 4% 95%, rgba(14, 157, 224, .35), transparent 60%);
  pointer-events: none;
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { color: #fff; }
.contact-panel .sec-sub { color: rgba(255, 255, 255, .7); }
.contact-panel .text-muted { color: rgba(255, 255, 255, .7) !important; }
.contact-panel a:not(.btn) { color: #7ee0b6; font-weight: 700; }
.contact-phone, .contact-mail {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  backdrop-filter: blur(8px);
  transition: background .18s ease, transform .18s ease;
}
.contact-phone:hover, .contact-mail:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.contact-phone i, .contact-mail i { color: #7ee0b6; font-style: normal; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #0b1526; color: #94a3b8; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 4px 10px rgba(14, 163, 113, .3)); }
.footer-brand p { font-size: .88rem; color: #7c8aa0; max-width: 300px; }
.footer-col h5 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: #7c8aa0; font-size: .88rem; margin-bottom: .6rem; transition: color .15s ease; }
.footer-col a:hover { color: #7ee0b6; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; }
  .hero-mock { margin-top: 1.5rem; }
  .metrics { margin-top: 2rem; }
  .module-shot img { min-height: 280px; }
  .module-body { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .float-card { display: none; }
}
@media (max-width: 575.98px) {
  .metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.35rem; }
  .nav-actions .btn { padding: .75rem 1.1rem; font-size: .88rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
