:root {
  --body-bg: #F3F7FB;
  --ink: #07182b;
  --muted: #617083;
  --muted-light: #8B98A9;
  --border: #D9E1EC;
  --border-soft: #E6ECF4;
  --primary: #0879FF;
  --primary-50: #E8F2FF;
  --primary-100: #D6E8FF;
  --primary-hover: #0669DB;
  --success: #1FA971;
  --success-50: #E6F7EF;
  --warning: #D97706;
  --danger: #DC2626;
  --dark-bg: #0A1020;
  --dark-bg-2: #07182b;
  --dark-ink: #F3F7FB;
  --dark-muted: #94A3B8;
  --dark-border: #1E2A3D;
  --white: #FFFFFF;
  --card-shadow: 0 1px 2px rgba(7, 24, 43, 0.04), 0 8px 24px rgba(7, 24, 43, 0.06);
  --card-shadow-lg: 0 2px 8px rgba(7, 24, 43, 0.06), 0 24px 60px rgba(7, 24, 43, 0.10);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-sans: Arial, Helvetica, "Helvetica Neue", sans-serif;
  --container: 1180px;
  --container-sm: 880px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--body-bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: 52px; font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: 39px; font-weight: 400; letter-spacing: -0.015em; }
h3 { font-size: 25px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 1em; color: var(--muted); font-size: 16px; line-height: 1.65; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }
ul, ol { padding-left: 1.2em; color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--border); margin: 24px 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: var(--container-sm); }
.row { display: flex; flex-wrap: wrap; margin: 0 -16px; }
.col { padding: 0 16px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--primary-50);
  border-radius: 999px;
}
.eyebrow.eyebrow--dark {
  background: rgba(8, 121, 255, 0.12);
  color: #6FB1FF;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(8, 121, 255, 0.20), 0 1px 2px rgba(7, 24, 43, 0.06);
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(8, 121, 255, 0.28), 0 2px 4px rgba(7, 24, 43, 0.06);
}
.btn--primary .btn-icon { transition: transform 0.2s ease; }
.btn--primary:hover .btn-icon { transform: translateX(3px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .arrow { font-size: 14px; line-height: 1; }

/* ============ SITE HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(243, 247, 251, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(217, 225, 236, 0.6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  outline: none;
}
.site-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 350px;
  max-height: 72px;
  -webkit-user-drag: none;
  user-select: none;
}
.site-header .site-logo:hover img {
  filter: saturate(1.05) contrast(1.02);
}
.site-footer__brand .site-logo img {
  max-width: 420px;
  max-height: 90px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-header__cta { display: flex; align-items: center; gap: 14px; }
.site-header__cta .btn { padding: 11px 20px; font-size: 14px; }
.header-link-login {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.header-link-login:hover { color: var(--ink); }

/* ============ HERO ============ */
.hero {
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(8, 121, 255, 0.09) 0%, rgba(8, 121, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.hero__text h1 {
  margin-bottom: 24px;
  max-width: 560px;
}
.hero__text h1 strong {
  color: var(--primary);
  font-weight: 700;
}
.hero__text .lead {
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13.5px;
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 169, 113, 0.15);
}

/* ===== HERO MOCK INBOX ===== */
.mock-inbox {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--card-shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateX(1.5deg) rotateY(-3deg);
}
.mock-inbox__topbar {
  height: 38px;
  background: #F7FAFD;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.mock-inbox__dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #E3E8F0;
}
.mock-inbox__dot.r { background: #FF5F57; }
.mock-inbox__dot.y { background: #FEBC2E; }
.mock-inbox__dot.g { background: #28C840; }
.mock-inbox__url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted-light);
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 20px;
}
.mock-inbox__body {
  display: grid;
  grid-template-columns: 70px 220px 1fr;
  height: 440px;
}
.mock-sidebar {
  background: var(--dark-bg-2);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mock-sidebar__item {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8897AE;
  font-size: 16px;
}
.mock-sidebar__item.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(8, 121, 255, 0.35);
}
.mock-ticketlist {
  background: #F9FBFD;
  border-right: 1px solid var(--border-soft);
  padding: 10px 0;
  overflow: hidden;
}
.mock-ticket {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  position: relative;
}
.mock-ticket.active {
  background: white;
  border-left: 3px solid var(--primary);
  padding-left: 11px;
}
.mock-ticket.active .mock-ticket__name { color: var(--ink); }
.mock-ticket__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mock-ticket__name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.mock-ticket__time {
  font-size: 10.5px;
  color: var(--muted-light);
  font-weight: 500;
}
.mock-ticket__sub {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-ticket__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-whatsapp {
  background: #DCFCE7;
  color: #166534;
  padding: 2px 7px;
  border-radius: 999px;
}
.badge-email {
  background: var(--primary-50);
  color: #1E5FAF;
  padding: 2px 7px;
  border-radius: 999px;
}
.badge-prio {
  background: #FEF3C7;
  color: #92400E;
  padding: 2px 7px;
  border-radius: 999px;
}

.mock-chat {
  background: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mock-chat__header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-chat__person {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #FFC6A8 0%, #FF8A65 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 13px;
}
.mock-avatar.av-team {
  background: linear-gradient(135deg, #85C1FF 0%, #0879FF 100%);
}
.mock-chat__pname { font-size: 13px; font-weight: 700; }
.mock-chat__meta { font-size: 10.5px; color: var(--muted-light); }
.mock-chat__tags {
  display: flex;
  gap: 6px;
}
.mock-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--primary-50);
  color: #1E5FAF;
}
.mock-chat__stream {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  background: #F7FAFD;
}
.mock-bubble {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 13px;
  font-size: 12.5px;
  line-height: 1.45;
}
.mock-bubble.in {
  background: white;
  border: 1px solid var(--border-soft);
  border-top-left-radius: 4px;
  align-self: flex-start;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(7, 24, 43, 0.03);
}
.mock-bubble.in.whatsapp::before {
  content: "WA";
  display: inline-block;
  font-size: 8.5px;
  font-weight: 800;
  background: #25D366;
  color: white;
  padding: 1px 4px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.mock-bubble.out {
  background: var(--primary);
  color: white;
  border-top-right-radius: 4px;
  align-self: flex-end;
}
.mock-ai-card {
  margin-top: auto;
  background: var(--white);
  border: 1px solid var(--primary-100);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--card-shadow);
}
.mock-ai-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mock-ai-card__label::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #0879FF, #004AAD);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  color: white;
  font-size: 8px;
  font-weight: 900;
  content: "✦";
}
.mock-ai-card__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}
.mock-ai-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-ai-card__btn {
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-ai-card__btn.sec {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.mock-ai-card__score {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
}
.mock-ai-card__score span { color: var(--success); font-weight: 700; }

/* ============ TRUST STRIP DARK ============ */
.trust-strip {
  background: var(--dark-bg-2);
  color: var(--dark-ink);
  padding: 48px 0 44px;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 200px at 50% 0%, rgba(8, 121, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.trust-strip__eyebrow {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6FB1FF;
  margin-bottom: 12px;
  position: relative;
}
.trust-strip__tagline {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-ink);
  margin: 0 auto 36px;
  max-width: 620px;
  position: relative;
}
.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.trust-item {
  padding: 14px 18px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item__check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(8, 121, 255, 0.20);
  color: #6FB1FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.trust-item__text {
  font-size: 13.5px;
  font-weight: 500;
  color: #CBD5E1;
  line-height: 1.3;
}

/* ============ METRICS BAND ============ */
.metrics-band {
  padding: 72px 0 56px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-lg);
}
.metric-card__num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1;
}
.metric-card__num .unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}
.metric-card__label {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.metric-card__sub {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--success);
  background: var(--success-50);
  padding: 3px 8px;
  border-radius: 999px;
}
.metric-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  background: var(--primary-50);
  color: var(--primary);
}

/* ============ SECTION GENERICA ============ */
.section {
  padding: 84px 0;
  position: relative;
}
.section--padded-lg { padding: 96px 0 104px; }
.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 { margin-bottom: 16px; }
.section__head h2 strong { color: var(--primary); font-weight: 700; }
.section__head .lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============ INTRO 3 COL ============ */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.intro-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-lg);
  border-color: var(--primary-100);
}
.intro-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 900;
}
.intro-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.intro-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ FEATURE GRID ALTERNATI ============ */
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding-top: 12px;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.feature-block.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.feature-block.reverse .feature-block__media {
  order: 2;
}
.feature-block.reverse .feature-block__content {
  order: 1;
}
.feature-block__content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.feature-block__content h3 strong {
  color: var(--primary);
  font-weight: 700;
}
.feature-block__content p {
  font-size: 16px;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-list li strong { color: var(--ink); font-weight: 700; }

.feature-block__media {
  position: relative;
}
.media-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow-lg);
  overflow: hidden;
  padding: 20px;
}
.media-card--dark {
  background: var(--dark-bg-2);
  border-color: var(--dark-border);
}
.media-mini-inbox {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  height: 330px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.media-mini-inbox__side {
  background: #F9FBFD;
  border-right: 1px solid var(--border-soft);
  padding: 10px;
}
.media-mini-inbox__line {
  padding: 9px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: white;
  border: 1px solid var(--border-soft);
}
.media-mini-inbox__line.wa {
  border-left: 3px solid #25D366;
  background: white;
}
.media-mini-inbox__line.wa .line-label { color: #166534; }
.media-mini-inbox__line.tk {
  border-left: 3px solid var(--primary);
}
.media-mini-inbox__line.em {
  border-left: 3px solid var(--warning);
}
.line-title { font-size: 11.5px; font-weight: 700; color: var(--ink); }
.line-label { font-size: 9.5px; font-weight: 800; letter-spacing: 0.4px; color: var(--muted); margin-top: 2px; text-transform: uppercase; }
.line-snippet { font-size: 10px; color: var(--muted); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.media-mini-inbox__main {
  padding: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.mini-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #FFC6A8, #FF8A65);
  color: white; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.mini-p { font-size: 12px; font-weight: 700; }
.mini-m { font-size: 10px; color: var(--muted-light); }
.mini-bubble {
  font-size: 12px;
  padding: 8px 11px;
  border-radius: 10px;
  max-width: 88%;
  line-height: 1.45;
}
.mini-bubble.in {
  background: #F4F8FC;
  border: 1px solid var(--border-soft);
  align-self: flex-start;
  color: var(--ink);
}
.mini-bubble.in.wa::before {
  content: "WA";
  font-size: 8px; font-weight: 800;
  background: #25D366; color: white;
  padding: 1px 4px; border-radius: 3px;
  margin-right: 5px;
}
.mini-suggest {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F7FBFF 0%, #E8F2FF 100%);
  border: 1px solid var(--primary-100);
  border-left: 3px solid var(--primary);
}
.mini-suggest__lbl {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.mini-suggest__txt { font-size: 11.5px; color: var(--ink); line-height: 1.4; }

/* Media block 2 - Knowledge */
.media-kb {
  padding: 24px;
}
.kb-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 14px;
}
.kb-tab {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
}
.kb-tab.active {
  background: var(--primary);
  color: white;
}
.kb-items { display: flex; flex-direction: column; gap: 10px; }
.kb-item {
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.kb-item__ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.kb-item__t { font-size: 13px; font-weight: 700; }
.kb-item__s { font-size: 11px; color: var(--muted); margin-top: 2px; }
.kb-item__score {
  font-size: 11px;
  font-weight: 800;
  color: var(--success);
  background: var(--success-50);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Media block 3 - Workflow Automation */
.media-flow {
  padding: 22px;
}
.flow-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #F7FAFD 0%, #EEF4FB 100%);
  border: 1px solid var(--border-soft);
}
.flow-step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}
.flow-step + .flow-step {
  border-top: 1px dashed var(--border);
}
.flow-step__idx {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border-soft);
  color: var(--primary);
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: var(--card-shadow);
}
.flow-step__t { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.flow-step__d { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.flow-step__badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
.flow-step__badge.auto { background: #EDE9FE; color: #6D28D9; }
.flow-step__badge.prio { background: #FEF3C7; color: #92400E; }
.flow-step__badge.assign { background: #DBEAFE; color: #1D4ED8; }
.flow-step__badge.check { background: var(--success-50); color: #065F46; }

/* ============ SECURITY DARK ============ */
.security {
  background: var(--dark-bg);
  color: var(--dark-ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.security::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 400px at 20% 0%, rgba(8, 121, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 400px at 80% 100%, rgba(8, 121, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.security .container { position: relative; }
.security__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.security__head h2 {
  color: var(--dark-ink);
  margin-bottom: 16px;
}
.security__head h2 strong { color: #6FB1FF; font-weight: 700; }
.security__head .lead {
  color: var(--dark-muted);
  font-size: 17px;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.security-item {
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--dark-border);
  transition: all 0.2s ease;
}
.security-item:hover {
  border-color: rgba(8, 121, 255, 0.35);
  background: rgba(8, 121, 255, 0.04);
  transform: translateY(-2px);
}
.security-item__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(8, 121, 255, 0.15);
  color: #6FB1FF;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}
.security-item h4 {
  color: var(--dark-ink);
  font-size: 16.5px;
  margin-bottom: 8px;
}
.security-item p {
  color: var(--dark-muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ CTA DEMO FORM ============ */
.cta {
  padding: 96px 0 104px;
  position: relative;
}
.cta__head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.cta__head h2 { margin-bottom: 14px; }
.cta__head h2 strong { color: var(--primary); font-weight: 700; }
.cta__head .lead { font-size: 16.5px; }

.demo-card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 40px 44px 36px;
  box-shadow: var(--card-shadow-lg);
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.form-field .req { color: var(--danger); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  font-size: 15px;
  background: #F9FBFD;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: all 0.15s ease;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(8, 121, 255, 0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.form-field .hint { font-size: 11.5px; color: var(--muted-light); }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
  background: #FEF2F2;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.field-error {
  font-size: 11.5px;
  color: var(--danger);
  font-weight: 600;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 2px;
  margin-top: 2px;
}
.form-privacy input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--primary);
}
.form-privacy label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}
.form-privacy label strong { color: var(--ink); font-weight: 600; }

.demo-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.demo-form__submit .note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 340px;
}
.demo-form__submit .note strong { color: var(--ink); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-success {
  display: none;
  padding: 22px 24px;
  background: var(--success-50);
  border: 1px solid #A7F3D0;
  border-left: 3px solid var(--success);
  border-radius: var(--radius-md);
  color: #065F46;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.form-success.is-visible { display: block; }
.form-success strong { color: #064E3B; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark-bg-2);
  color: var(--dark-muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--dark-border);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-border);
}
.site-footer__brand .site-logo { color: var(--dark-ink); margin-bottom: 14px; }
.site-footer__brand .site-logo:hover { color: var(--dark-ink); }
.site-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-muted);
  max-width: 320px;
  margin-bottom: 14px;
}
.site-footer__it {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94A3B8;
}
.site-footer__it .flag {
  display: inline-block;
  width: 18px; height: 13px;
  background: linear-gradient(180deg, #008C45 0%, #008C45 33%, #F4F5F0 33%, #F4F5F0 66%, #CD212A 66%, #CD212A 100%);
  border-radius: 2px;
}
.site-footer__col h5 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark-ink);
  margin-bottom: 16px;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__col a {
  color: var(--dark-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.site-footer__col a:hover { color: var(--dark-ink); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer__copy {
  font-size: 13px;
  color: #64748B;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-footer__links a {
  color: #64748B;
  font-size: 13px;
  text-decoration: none;
}
.site-footer__links a:hover { color: var(--dark-ink); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  .hero { padding: 64px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__text { max-width: 620px; margin: 0 auto; text-align: center; }
  .hero__text h1 { margin-left: auto; margin-right: auto; }
  .hero__text .lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__meta { justify-content: center; }
  .mock-inbox { max-width: 720px; margin: 0 auto; transform: none; }
  .mock-inbox__body { grid-template-columns: 60px 200px 1fr; height: 400px; }
  .trust-strip__list { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card__num { font-size: 34px; }
  .intro-grid { grid-template-columns: 1fr; gap: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-block.reverse .feature-block__media { order: 1; }
  .feature-block.reverse .feature-block__content { order: 2; }
  .section, .section--padded-lg { padding: 72px 0; }
  .security-grid { grid-template-columns: 1fr; max-width: 520px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .site-logo img { max-width: 240px; max-height: 56px; }
  .site-footer__brand .site-logo img { max-width: 300px; }
  .site-nav { display: none; }
  .site-header__cta .header-link-login { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero__text .lead { font-size: 16px; }
  .mock-inbox__body {
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto 1fr;
    height: 480px;
  }
  .mock-sidebar {
    grid-row: 1 / span 2;
    flex-direction: column;
  }
  .mock-ticketlist { display: none; }
  .mock-inbox__url { display: none; }
  .trust-strip { padding: 36px 0 32px; }
  .trust-strip__tagline { font-size: 17px; }
  .trust-strip__list { grid-template-columns: 1fr; }
  .metrics-band { padding: 52px 0 36px; }
  .metrics-grid { grid-template-columns: 1fr; gap: 14px; }
  .metric-card { padding: 22px 20px; }
  .metric-card__num { font-size: 30px; }
  .section { padding: 56px 0; }
  .section--padded-lg { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
  .section__head .lead { font-size: 15.5px; }
  .feature-grid { gap: 64px; }
  .media-mini-inbox { grid-template-columns: 1fr; height: auto; }
  .media-mini-inbox__side { display: none; }
  .media-mini-inbox__main { height: 280px; }
  .cta { padding: 64px 0 72px; }
  .demo-card { padding: 28px 24px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .demo-form__submit { flex-direction: column; align-items: stretch; }
  .demo-form__submit .note { max-width: none; }
  .security { padding: 64px 0; }
  .site-footer { padding: 44px 0 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn--lg { padding: 15px 26px; font-size: 15px; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .container { padding: 0 16px; }
  .site-logo img { max-width: 200px; max-height: 48px; }
  .site-footer__brand .site-logo img { max-width: 240px; }
  .mock-inbox__body { height: 420px; }
  .hero__cta .btn--lg { width: 100%; }
}
