/* Warmer, more human visual language + real SVG icons */
:root {
  --blue: #2f7eb8;
  --blue-dark: #256897;
  --blue-deep: #1e4f75;
  --green: #2f9e6b;
  --green-dark: #248056;
  --ink: #2a2f33;
  --muted: #5f6b73;
  --line: rgba(42, 47, 51, 0.1);
  --bg: #faf8f5;
  --bg-soft: #f1eee8;
  --surface: #ffffff;
  --topbar: #243039;
  --footer: #1c262e;
  --warm: #e8a45a;
  --font: "Nunito", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(36, 48, 57, 0.08);
  --shadow-soft: 0 4px 14px rgba(36, 48, 57, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--muted);
  background:
    radial-gradient(900px 420px at 0% -5%, rgba(47, 126, 184, 0.08), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(232, 164, 90, 0.1), transparent 50%),
    var(--bg);
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: .5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }
.container { width: min(var(--max), calc(100% - clamp(1rem, 4vw, 2rem))); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }

/* Icons */
.icon { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: -0.2em; flex-shrink: 0; }
.icon-lg { width: 1.7rem; height: 1.7rem; }
.icon-inline { margin-right: .4rem; }
.btn .icon { margin-right: .45rem; }
.top-btn .icon { margin-right: .3rem; width: 1rem; height: 1rem; }

/* Top bar */
.topbar {
  background: var(--topbar);
  color: #d5dde3;
  font-size: 13px;
}
.topbar-inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: .55rem; min-height: 44px;
}
.topbar a.top-btn {
  display: inline-flex; align-items: center;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s ease;
}
.topbar a.top-btn:hover { background: rgba(255,255,255,.2); }

/* Header */
.site-header {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 1rem;
  position: relative;
}
.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--ink); font-weight: 700; text-decoration: none;
  flex: 1 1 auto; min-width: 0;
  justify-content: flex-start;
  text-align: left;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(145deg, #3a8bc4, #1e5a86);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(47, 126, 184, .28);
  flex-shrink: 0;
}
.brand-mark .icon { width: 22px; height: 22px; margin: 0; }
.brand-text {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.15;
  text-align: left;
}
.brand-text small {
  display: block; font-family: var(--font); font-size: clamp(.65rem, 1.8vw, .72rem);
  font-weight: 600; color: var(--muted); letter-spacing: .01em;
  text-transform: none; margin-top: .2rem;
  line-height: 1.35;
}
.site-nav { display: flex; align-items: center; gap: .1rem; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  color: #4a555c; font-weight: 600; font-size: 14px;
  padding: .55rem .7rem; text-decoration: none; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.site-nav a:hover { color: var(--blue-dark); background: rgba(47,126,184,.08); }
.site-nav a.is-active { color: var(--blue-dark); background: rgba(47,126,184,.12); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; margin: 6px 10px; background: #555; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: var(--font);
  line-height: 1.35;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary, .btn-blue {
  background: var(--blue); border-color: var(--blue-dark); color: #fff !important;
}
.btn-primary:hover, .btn-blue:hover { background: var(--blue-dark); color: #fff !important; }
.btn-success, .btn-green {
  background: var(--green); border-color: var(--green-dark); color: #fff !important;
}
.btn-success:hover, .btn-green:hover { background: var(--green-dark); color: #fff !important; }
.btn-secondary {
  background: #fff; border-color: var(--line); color: var(--ink) !important;
}
.btn-secondary:hover { background: #f7f4ef; }
.btn-lg { padding: .9rem 1.45rem; font-size: 16px; }
.btn-sm { padding: .45rem .9rem; font-size: 13px; }
.text-link { font-weight: 700; display: inline-flex; align-items: center; gap: .25rem; }

/* Hero — CSS background photo, text always on top */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background-color: #1a3344;
}
.hero--bg {
  min-height: clamp(480px, 72vh, 640px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(20, 42, 58, .96) 0%,
      rgba(26, 51, 68, .88) 38%,
      rgba(30, 79, 117, .5) 58%,
      rgba(47, 126, 184, .12) 100%
    ),
    var(--hero-bg-lg, none);
  background-size: cover, cover;
  background-position: center, right center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero--bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(20, 42, 58, .94) 0%,
        rgba(26, 51, 68, .82) 45%,
        rgba(30, 79, 117, .55) 100%
      ),
      var(--hero-bg-sm, var(--hero-bg-lg, none));
    background-position: center, center top;
  }
}
.hero__overlay { display: none; }
.hero--bg > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  justify-content: flex-start;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: min(640px, 92%);
  margin-right: auto;
  padding-left: clamp(0.5rem, 1.5vw, 1rem);
  text-align: left;
  animation: fadeUp .7s ease both;
}
.hero__badge { margin-bottom: .75rem; display: inline-flex; gap: .35rem; }

/* Responsive image slots — fixed ratio, no layout jump */
.media-slot {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e3eaf0;
  contain: layout style paint;
}
.media-slot .media-cover {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
}

.defer-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  max-width: 440px;
}

.why-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(165deg, #fff, #eef5fa);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .85rem;
}
.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
}
.trust-list__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e8f3fb;
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-list__ico .icon { width: 20px; height: 20px; }
.trust-list strong { display: block; font-size: .95rem; margin-bottom: .15rem; color: var(--ink); }
.trust-list span { font-size: .9rem; color: var(--muted); line-height: 1.45; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.trust-stat {
  text-align: center;
  padding: .75rem .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.trust-stat strong { display: block; font-size: .95rem; color: var(--ink); }
.trust-stat span { display: block; font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.why-trust__cta { width: 100%; justify-content: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.5vw, 2rem);
  align-items: stretch;
}
.section-features {
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 4.25rem);
}
.section-features .container {
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section-features .section-head {
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
  padding-left: clamp(0.5rem, 1.5vw, 1rem);
}
.section-features .feature-grid {
  padding-left: clamp(0.25rem, 1vw, 0.5rem);
}
.section-features .center-link {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.section-features .feature-box.feature-box--icon {
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.75rem, 2.5vw, 2.25rem);
  min-height: 100%;
}
.section-features .feature-box-icon {
  margin-bottom: 1.25rem;
}
.section-features .feature-box__body {
  gap: .85rem;
}
.feature-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(160deg, #e8f3fb, #d9ebf7);
  border: 1px solid #c9e0f1;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  flex-shrink: 0;
  margin-bottom: 1.1rem;
}
.feature-box-icon .feature-icon,
.feature-box-icon svg { width: 28px; height: 28px; margin: 0; border: 0; box-shadow: none; background: transparent; }

.live-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.live-demo-side { display: grid; gap: .85rem; align-content: start; }

.dashboard-preview {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(28, 48, 62, .12);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dashboard-preview:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.dashboard-preview__frame { background: #f4f7fa; }
.dashboard-preview__top {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem .85rem;
  background: #1e3344;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700;
}
.dashboard-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}
.dashboard-preview__title { margin-left: .35rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dashboard-preview__body {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 220px;
}
.dashboard-preview__nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem .55rem;
  background: #243746;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
}
.dashboard-preview__nav span {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .5rem;
  border-radius: 8px;
}
.dashboard-preview__nav span.is-active { background: rgba(47, 126, 184, .35); color: #fff; }
.dashboard-preview__nav .icon { width: 14px; height: 14px; flex-shrink: 0; }
.dashboard-preview__main { padding: .85rem; display: grid; gap: .75rem; align-content: start; }
.dashboard-preview__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .45rem;
}
.dashboard-preview__tiles span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .6rem;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.dashboard-preview__tiles strong { display: block; font-size: 1rem; color: var(--ink); margin-bottom: .1rem; }
.dashboard-preview__rows { display: grid; gap: .4rem; }
.dashboard-preview__row {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.dashboard-preview__row .icon { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.dashboard-preview__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.dashboard-preview__cta .icon { width: 18px; height: 18px; }

.page-hero__banner {
  margin: 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(42vw, 380px);
  overflow: hidden;
  background: #1e4f75;
}
.page-hero__banner .media-cover { object-position: center 30%; }
.page-hero__inner { padding-top: clamp(1.25rem, 2.5vw, 2rem); }

.article-cover {
  margin: 0 0 1.25rem;
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  max-height: min(50vw, 440px);
  box-shadow: 0 10px 24px rgba(36, 48, 57, .08);
}

.post-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}
.post-card__media .media-cover { transition: transform .3s ease; }
.post-card:hover .post-card__media .media-cover { transform: scale(1.02); }

.media-cover {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.prose img,
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(36, 48, 57, .08);
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 4rem;
  max-width: 640px;
  text-align: left;
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: .55rem;
  font-weight: 600;
}
.hero .hero-sub {
  color: rgba(255,255,255,.92);
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
}
.hero-bullets li {
  display: flex; align-items: center; gap: .65rem;
  margin: .55rem 0;
  color: rgba(255,255,255,.95);
  font-size: 1.02rem;
  font-weight: 600;
}
.hero-bullets .icon {
  width: 1.35rem; height: 1.35rem;
  color: #8fd6b3;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  padding: .35rem;
  box-sizing: content-box;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-start; }
.hero-meta { margin-top: 1.1rem; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 600; }

/* Page hero */
.page-hero {
  background: linear-gradient(125deg, #1e4f75, #2f7eb8 55%, #4aa0d0);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-radius: 0 0 24px 24px;
  text-align: left;
}
.page-hero--banner { padding-top: 0; }
.page-hero h1 { color: #fff; margin: 0 0 .45rem; font-size: clamp(1.7rem, 3vw, 2.1rem); }
.page-hero p, .page-hero .prose { color: rgba(255,255,255,.9); margin: 0; max-width: 640px; }
.page-hero a { color: #fff; text-decoration: underline; }
.eyebrow { text-transform: uppercase; letter-spacing: .06em; font-size: 12px; font-weight: 700; opacity: .85; }

/* Sections */
.section { padding: clamp(2.5rem, 6vw, 3.75rem) 0; }
.section-soft { background: rgba(255,255,255,.55); border-block: 1px solid var(--line); }
.section-head { text-align: left; max-width: 720px; margin: 0 0 2.4rem; }
.section-head h2, .section-head h3 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  margin-bottom: .55rem;
}
.section-head .lead-caps {
  letter-spacing: .02em;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: none;
}
.section-title-left h2, .section-title-left h3 { font-size: 1.7rem; }

.check-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .5rem 0;
  color: var(--ink);
  font-weight: 600;
}
.check-list .icon { color: var(--green); margin-top: .15rem; }

.phone-panel {
  background: linear-gradient(165deg, #fff, #eef5fa);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.phone-mock {
  width: min(220px, 70%);
  margin: 0 auto 1rem;
  aspect-ratio: 9/16;
  background: #1e2a32;
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  position: relative;
}
.phone-mock::before {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 5px; border-radius: 4px; background: #333;
}
.phone-screen {
  height: 100%; border-radius: 20px;
  background: linear-gradient(180deg, #fff, #eef6fb);
  padding: 1.15rem .8rem;
  text-align: left;
  font-size: 12px; color: #445;
  font-weight: 600;
}
.phone-screen .bar {
  height: 8px; border-radius: 4px; background: var(--blue); margin-bottom: 10px; width: 70%;
}
.phone-screen .row-line {
  height: 30px; border-radius: 8px; background: #fff;
  border: 1px solid #e4e8ec; margin-bottom: 6px;
  display: flex; align-items: center; padding: 0 8px; gap: 7px;
}
.phone-screen .row-line .icon { width: 14px; height: 14px; color: var(--blue); }
.phone-screen .row-line.missed .icon { color: #c44; }
.phone-screen .row-line.sms .icon { color: var(--green); }

/* Feature boxes */
.feature-box {
  text-align: left;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 72px; height: 72px;
  margin: 0 0 1rem;
  border-radius: 22px;
  background: linear-gradient(160deg, #e8f3fb, #d9ebf7);
  border: 1px solid #c9e0f1;
  display: grid; place-items: center;
  color: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.feature-box__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .35rem;
}
.section-features .feature-box__body h3 { margin-bottom: .65rem; }
.section-features .feature-box__body p { margin-bottom: 1.15rem; }
.section-features .feature-box__body .read-more { margin-top: .65rem; padding-top: .35rem; }
.feature-box--icon .feature-box__body {
  padding: 0;
  gap: .75rem;
}
.feature-box__body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature-box__body p { font-size: 15px; margin-bottom: 1rem; flex: 1; min-height: 0; line-height: 1.55; }
.feature-box__body .read-more { font-size: 14px; font-weight: 700; margin-top: .5rem; padding-top: .25rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.step-card {
  text-align: left;
  padding: 1.7rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: #fff;
  margin-bottom: .9rem;
  box-shadow: 0 8px 18px rgba(47,126,184,.25);
}
.step-num .icon { width: 1.4rem; height: 1.4rem; margin: 0; }
.step-card h4 { font-size: 1.1rem; margin-bottom: .4rem; }

/* CTA */
.cta-band {
  background: linear-gradient(120deg, #1e4f75, #2f7eb8 50%, #3f9a7a);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  border-radius: 24px;
  margin: 0 1rem 2rem;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }

/* Cards / panels */
.panel, .download-card, .price-card, .device-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card--cover { padding: 0; }
.post-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.post-card__body p { flex: 1; margin-bottom: .5rem; }
.split { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.5rem; align-items: start; }
.download-layout, .blog-layout, .article-layout {
  display: grid; grid-template-columns: 1.55fr .85fr; gap: 1.5rem; align-items: start;
}
.blog-layout:not(:has(aside)),
.article-layout:not(:has(aside)) {
  grid-template-columns: 1fr;
}
.post-grid, .pricing-grid, .device-grid, .stat-row { display: grid; gap: 1.15rem; }
.post-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.device-grid { grid-template-columns: repeat(2, 1fr); }
.stat-row { grid-template-columns: repeat(4, 1fr); margin-bottom: 1.5rem; }
.stat-row > div, .device-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem;
}
.stat-row strong { display: block; font-family: var(--display); font-size: 1.85rem; color: var(--ink); }
.stat-row span { color: var(--muted); font-size: .9rem; font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.post-card time { color: var(--muted); font-size: .85rem; font-weight: 600; }
.post-card h2, .post-card h3 { font-size: 1.2rem; }
.post-card h2 a, .post-card h3 a { color: var(--ink); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--blue-dark); }
.price { font-family: var(--display); font-size: 2.3rem; color: var(--ink); margin: .35rem 0 1rem; }
.price span { font-size: 1rem; color: var(--muted); }
.price-card.featured {
  border-color: transparent;
  background: linear-gradient(180deg, #fff, #eef6fc);
  box-shadow: 0 0 0 2px rgba(47,126,184,.18), var(--shadow);
}
.device-card { color: inherit; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.device-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.device-top { display: flex; justify-content: space-between; gap: 1rem; }
.device-top h2 { font-size: 1.25rem; margin: 0; }
.status { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; color: var(--green); }
.notice {
  margin-top: 1.2rem; padding: .95rem 1.05rem; border-radius: var(--radius-sm);
  background: #fff7eb; border: 1px solid #f0d7a8; color: #7a5310; font-size: 14px;
}
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); font-size: 14px; }
th { background: #faf8f5; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.filter-bar { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .95rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: #555; font-weight: 700; font-size: 13px; text-decoration: none;
}
.chip:hover { border-color: var(--blue); color: var(--blue-dark); }
.chip.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .2rem .55rem; border-radius: 999px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
}
.badge-incoming { background: #d9f5e7; color: #176b45; }
.badge-outgoing { background: #dceeff; color: #1a5278; }
.badge-missed { background: #fde2e2; color: #9b2c2c; }

/* Forms */
.form-stack { display: grid; gap: .9rem; }
.form-stack label { display: grid; gap: .3rem; font-weight: 700; color: var(--ink); font-size: 14px; }
.form-stack label.checkbox, label.checkbox {
  display: flex !important; align-items: flex-start; gap: .55rem; font-weight: 600; line-height: 1.4;
}
.form-stack label.checkbox input, label.checkbox input { width: auto; margin-top: .2rem; }
.captcha-field input { max-width: 200px; }
input, textarea, select {
  width: 100%; padding: .75rem .9rem; border-radius: var(--radius-sm);
  border: 1px solid #d5d8dc; font: inherit; background: #fff; color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,126,184,.15);
}
.narrow { max-width: 720px; }
.prose h2, .prose h3 { margin-top: 1.5rem; }
.prose p, .prose li { color: var(--muted); }
.article-header h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.article-cover {
  margin: 0 0 1.25rem;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: min(56vw, 480px);
  box-shadow: 0 12px 28px rgba(36, 48, 57, .1);
  background: #e8eef3;
}
.article-cover img { object-position: center 30%; }
.lede { font-size: 1.1rem; }
.related-list { list-style: none; padding: 0; }
.related-list li { margin: .45rem 0; border-bottom: 1px solid var(--line); padding-bottom: .45rem; }
.pagination { display: flex; gap: .4rem; margin-top: 1.75rem; }
.pagination a {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--line); background: #fff; color: #555;
  text-decoration: none; font-size: 14px; font-weight: 700;
}
.pagination a.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.center-link { text-align: center; margin-top: 1.75rem; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem 1.15rem; margin-bottom: .7rem;
}
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--ink); font-family: var(--display); }
.install-steps { counter-reset: step; list-style: none; padding: 0; }
.install-steps li {
  counter-increment: step; position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4.2rem; margin-bottom: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.install-steps li::before {
  content: counter(step); position: absolute; left: 1rem; top: 1.1rem;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}

.ad-slot {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto;
  display: grid; place-items: center;
}
.flash { margin: 1rem auto; width: min(var(--max), calc(100% - 2rem)); padding: .8rem 1rem; border-radius: var(--radius-sm); }
.flash-success { background: #d9f5e7; color: #176b45; border: 1px solid #b7e8cf; }
.flash-error { background: #fde2e2; color: #9b2c2c; border: 1px solid #f5c2c2; }

/* Footer */
.site-footer {
  background: var(--footer);
  color: #a9b4bd;
  padding: 3.2rem 0 0;
  font-size: 14px;
}
.site-footer a { color: #d5dde3; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem;
}
.footer-brand {
  font-family: var(--display); font-size: 1.35rem; color: #fff; margin: 0 0 .6rem; font-weight: 600;
}
.site-footer h3 {
  color: #fff; margin: 0 0 .85rem; text-transform: uppercase;
  letter-spacing: .04em; font-size: .85rem; font-family: var(--font); font-weight: 800;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .4rem 0; }
.consent-note, .disclaimer { font-size: 12px; color: #87949e; line-height: 1.55; max-width: 48ch; }
.footer-bottom { border-top: 1px solid #2c3842; padding: 1rem 0; font-size: 13px; color: #87949e; }
.footer-bottom p { margin: 0; }

.social-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0; }
.social-link {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff !important;
  transition: background .2s ease, transform .2s ease;
}
.social-link:hover { background: var(--blue); transform: translateY(-2px); }
.social-link .icon { width: 18px; height: 18px; }

.feature-toc {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.feature-toc-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feature-toc-item:hover {
  border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--blue);
}
.toc-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; background: #e8f3fb; color: var(--blue); flex-shrink: 0;
}
.toc-ico .icon { width: 18px; height: 18px; }

.feature-cat { border-top: 1px solid var(--line); }
.feature-cat:nth-child(even) { background: rgba(255,255,255,.45); }
.feature-cat-head {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
}
.feature-cat-head h2 { margin: 0 0 .35rem; }
.feature-cat-summary { margin: 0; color: var(--muted); max-width: 70ch; }
.feature-cat-body { margin-bottom: 1.25rem; }
.feature-learn a { font-weight: 700; }
.feature-subgrid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
.feature-subcard {
  display: grid; grid-template-columns: auto 1fr auto; gap: .85rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--line); text-decoration: none; color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feature-subcard:hover {
  border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px);
}
.sub-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: linear-gradient(145deg, #e8f3fb, #f3eef8); color: var(--blue);
}
.sub-body { display: flex; flex-direction: column; gap: .2rem; font-size: 14px; color: var(--muted); }
.sub-body strong { color: var(--ink); font-size: 15px; }
.sub-arrow { color: var(--muted); }
.feature-cat-cta { margin-top: 1.1rem; }

.feature-detail-layout {
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 2rem; align-items: start;
}
.feature-detail-icon { margin-bottom: 1rem; }
.feature-side {
  position: sticky; top: 1rem; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 1.1rem;
}
.feature-side h3 { margin: 0 0 .75rem; font-size: 1rem; }
.feature-side-nav { display: flex; flex-direction: column; gap: .35rem; }
.feature-side-nav a {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .65rem; border-radius: 10px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: 14px;
}
.feature-side-nav a:hover, .feature-side-nav a.is-active { background: #e8f3fb; color: var(--blue); }
.feature-side-nav .icon { width: 16px; height: 16px; }
.click-list { list-style: none; padding: 0; }
.click-list li { margin: .55rem 0; }
.click-list a {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 14px;
  text-decoration: none; color: inherit; background: #fff;
}
.click-list a:hover { border-color: var(--blue); }
.click-list strong { display: block; color: var(--ink); }
.crumb { font-size: 14px; opacity: .9; margin: 0 0 .5rem; }
.crumb a { color: inherit; }

.faq-answer { margin-top: .75rem; }
.faq-link a { font-weight: 800; display: inline-flex; align-items: center; gap: .35rem; }

.auth-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem; display: grid; gap: 1rem; box-shadow: var(--shadow);
}
.auth-card label { display: grid; gap: .35rem; font-weight: 700; font-size: 14px; }
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
  width: 100%; padding: .75rem .9rem; border-radius: 12px;
  border: 1px solid var(--line); font: inherit;
}
.auth-switch { margin: 0; font-weight: 600; color: var(--muted); }
.check-row {
  display: grid !important; grid-template-columns: auto 1fr; gap: .65rem; align-items: start;
  font-weight: 600 !important;
}
.check-row input { margin-top: .2rem; }

.captcha-box {
  margin: 1rem 0; padding: 1rem 1.1rem; border-radius: 14px;
  border: 1px solid var(--line); background: #f8fafc;
}
.captcha-title {
  display: flex; align-items: center; gap: .45rem;
  margin: 0 0 .65rem; font-weight: 800; font-size: .92rem; color: var(--ink);
}
.captcha-title .icon { width: 18px; height: 18px; stroke: var(--blue); }
.captcha-q { display: block; font-weight: 800; font-size: 1.05rem; margin-bottom: .5rem; }
.captcha-field input { font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.captcha-hint { margin: .5rem 0 0; }

.support-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 9999;
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff !important; text-decoration: none;
  padding: .85rem 1.1rem; border-radius: 999px; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.support-float--telegram {
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 10px 28px rgba(34, 158, 217, .4);
}
.support-float--telegram:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(34, 158, 217, .5); color: #fff !important; }
.support-float-ico { display: grid; place-items: center; flex-shrink: 0; }
.support-float-ico .icon { width: 22px; height: 22px; stroke: #fff; fill: none; }
.support-float-label { font-size: 14px; white-space: nowrap; }
@media (max-width: 600px) {
  .support-float-label { display: none; }
  .support-float { padding: .95rem; border-radius: 50%; right: .85rem; bottom: .85rem; }
}

.live-demo-section { background: linear-gradient(180deg, #eef6fc 0%, #f7faf8 100%); }
.live-demo-copy .hero-actions,
.live-demo-copy .btn { margin-top: 0; }
.live-demo-copy {
  display: flex; flex-direction: column; align-items: flex-start; gap: .75rem;
}
.live-demo-devices { display: grid; gap: .75rem; }
.demo-device-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: .85rem; align-items: center;
  padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.demo-device-card:hover {
  transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--shadow);
}
.demo-device-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: #e8f3fb; color: var(--blue);
}
.demo-device-card strong { display: block; }
.demo-device-card small { color: var(--muted); }

.price-card { position: relative; }
.price-badge {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--blue); color: #fff; font-size: 12px; font-weight: 800;
  padding: .25rem .55rem; border-radius: 999px;
}
.price-card ul { list-style: none; padding: 0; }
.price-card li { display: flex; gap: .45rem; align-items: flex-start; margin: .45rem 0; }
.billing-note ul { padding-left: 1.1rem; }

@media (max-width: 1100px) {
  .site-nav a { padding: .5rem .45rem; font-size: 13px; }
}
@media (max-width: 991px) {
  .live-demo-layout { grid-template-columns: 1fr; }
  .hero--bg { min-height: clamp(420px, 65vh, 560px); }
  .why-grid, .feature-grid, .steps, .split,
  .download-layout, .blog-layout, .article-layout,
  .footer-grid, .post-grid, .pricing-grid, .device-grid, .stat-row,
  .feature-toc, .feature-subgrid, .feature-detail-layout {
    grid-template-columns: 1fr;
  }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .why-visual {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
  .feature-toc { grid-template-columns: 1fr 1fr; }
  .header-inner { min-height: 72px; }
  .brand { align-items: center; }
  .nav-toggle { display: inline-block; flex-shrink: 0; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: calc(100% + .35rem);
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: .6rem; flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow); z-index: 70;
  }
  .site-nav a { text-align: left; }
  .site-nav.is-open { display: flex; }
  .cta-band { margin: 0 .75rem 1.5rem; }
  .hero-content { padding: 3rem 0 2.5rem; }
  .page-hero__banner { aspect-ratio: 16 / 10; max-height: 280px; }
  .topbar-inner { min-height: 40px; }
}
@media (max-width: 600px) {
  .feature-grid, .feature-toc, .post-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero { border-radius: 0 0 20px 20px; }
  .hero--bg { min-height: 420px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .trust-stats { grid-template-columns: 1fr; }
  .dashboard-preview__body { grid-template-columns: 1fr; min-height: auto; }
  .dashboard-preview__nav {
    flex-direction: row;
    flex-wrap: wrap;
    padding: .65rem;
  }
  .post-card__media { aspect-ratio: 16 / 10; }
  .brand-text small { max-width: 14rem; }
  .topbar-inner { justify-content: flex-start; }
  .live-demo-copy .btn-lg { width: 100%; justify-content: center; }
}
