:root {
  --bg: #f4f9ff;
  --bg-2: #e8f2ff;
  --bg-elevated: #ffffff;
  --card: #ffffff;
  --line: rgba(0, 120, 255, .14);
  --text: #0a1628;
  --muted: #5a7290;
  --accent: #0078ff;
  --accent-2: #00b4ff;
  --accent-3: #00d4ff;
  --btn-text: #ffffff;
  --header-bg: linear-gradient(135deg, #0a1628 0%, #0f2847 100%);
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, .72);
  --footer-bg: #0a1628;
  --footer-text: rgba(255, 255, 255, .85);
  --footer-muted: rgba(255, 255, 255, .55);
  --input-bg: #ffffff;
  --surface: #ffffff;
  --gradient-a: rgba(0, 120, 255, .10);
  --gradient-b: rgba(0, 180, 255, .12);
  --accent-soft: rgba(0, 120, 255, .10);
  --accent-border: rgba(0, 120, 255, .28);
  --accent-glow: rgba(0, 120, 255, .22);
  --gold-soft: rgba(0, 212, 255, .12);
  --gold-border: rgba(0, 180, 255, .30);
  --danger: #ef4444;
  --ok: #059669;
  --shadow: 0 20px 50px rgba(0, 120, 255, .10);
  --shadow-sm: 0 4px 20px rgba(0, 120, 255, .08);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1360px;
  --container-wide: 1520px;
  --gutter: clamp(20px, 4vw, 48px);
  --header: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Plus Jakarta Sans", Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: Outfit, "Plus Jakarta Sans", sans-serif;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.container-wide {
  width: min(var(--container-wide), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px 12px; z-index: 99; }

/* ── Header ── */
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--header-muted, var(--muted));
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--header-text, var(--line)) 12%, transparent);
}
.topbar a { color: var(--header-muted, var(--muted)); transition: color .2s; }
.topbar a:hover { color: var(--accent-3); }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(1.2);
  background: var(--header-bg);
  color: var(--header-text, var(--text));
  border-bottom: 1px solid color-mix(in srgb, var(--header-text, var(--line)) 10%, transparent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 24px;
}

/* ── Brand / Logo ── */
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; flex-shrink: 0; min-width: 0; }
.brand-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo-box--header {
  height: var(--logo-h, 52px);
  width: min(var(--logo-w, 220px), 44vw);
  max-width: min(var(--logo-w, 220px), 44vw);
}
.brand-logo-box--footer {
  height: var(--logo-h, 80px);
  width: min(var(--logo-w, 260px), 90vw);
  max-width: min(var(--logo-w, 260px), 90vw);
}
.brand-logo-box--admin {
  height: var(--logo-h, 40px);
  width: min(var(--logo-w, 150px), 100%);
  max-width: var(--logo-w, 150px);
}
.brand-logo-box--backdrop {
  background: linear-gradient(145deg, #ffffff, var(--accent-soft));
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
}
.brand-logo-box--icon-crop {
  width: var(--logo-w, 56px) !important;
  height: var(--logo-h, 56px) !important;
  max-width: var(--logo-w, 56px) !important;
  min-width: var(--logo-w, 56px);
  border-radius: 12px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid var(--accent-border);
}
.brand-logo--icon-crop {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center 15%;
  transform: none;
  filter: none;
}
.brand-logo-box--footer.brand-logo-box--stacked {
  padding: 0;
  background: none;
}
.brand-logo-box--footer .brand-logo--stacked {
  filter: none;
}
.brand-logo {
  display: block;
  height: 100%;
  width: auto;
  max-height: var(--logo-h, 52px);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.brand-logo--wordmark { max-height: var(--logo-h, 44px); }
.brand-logo--wide {
  max-height: var(--logo-h, 48px);
  max-width: 100%;
}
.brand-logo--stacked {
  max-height: var(--logo-h, 120px);
  max-width: 100%;
}
.brand-logo-box--footer.brand-logo-box--backdrop { padding: 8px 12px; }
.brand-name {
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: -.02em;
  color: var(--accent);
}
.header--logo-tall .header-inner { min-height: 88px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-family: Outfit, sans-serif; font-weight: 800;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ── Navigation ── */
.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--header-muted, var(--muted));
  font-weight: 600;
  font-size: 14px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav a:hover { color: var(--header-text, var(--accent)); background: rgba(255, 255, 255, .08); }
.nav a.active {
  color: var(--accent-3, var(--accent));
  background: rgba(0, 120, 255, .15);
}
.header .btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--header-text, var(--text));
  border-color: rgba(255, 255, 255, .18);
}
.header .btn-ghost:hover {
  background: rgba(0, 180, 255, .18);
  border-color: rgba(0, 212, 255, .35);
  color: #fff;
}
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--header-text, var(--text));
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
.header-cta { display: flex; gap: 10px; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 10px; padding: 13px 22px;
  font: 700 14px "Plus Jakarta Sans", Manrope, sans-serif;
  transition: .2s transform, .2s box-shadow, .2s background;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 36px var(--accent-glow); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  color: #064e3b;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-ghost {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent-border); background: var(--accent-soft); color: var(--accent); }
.btn-dark { background: var(--bg-elevated); color: var(--text); border: 1px solid var(--line); }

/* ── Hero (full-width) ── */
.hero {
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, var(--gradient-a), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, var(--gradient-b), transparent 50%),
    linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  max-width: 14ch;
  font-weight: 800;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 19px); max-width: 54ch; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-meta {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta b {
  display: block;
  font-size: 28px;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  color: var(--accent);
}
.hero-meta span { color: var(--muted); font-size: 13px; font-weight: 600; }

/* ── Device mockup ── */
.device {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(165deg, #ffffff, var(--bg-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.device-screen {
  border-radius: calc(var(--radius-lg) - 8px);
  min-height: 380px;
  padding: 24px;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line);
}
.mock-card {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s;
}
.mock-card strong { display: block; font-size: 22px; font-family: Outfit, sans-serif; color: var(--accent); }
.orb {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.orb-a { background: var(--accent); top: -60px; right: -60px; }
.orb-b { background: var(--accent-3); bottom: -60px; left: -40px; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-2);
}
.marquee {
  display: flex;
  gap: 48px;
  animation: slide 32s linear infinite;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections (full-width bands) ── */
.section { padding: clamp(64px, 8vw, 96px) 0; }
.section-band {
  width: 100%;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.section-band--elevated {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
}
.section-band--accent {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, var(--accent-soft), transparent 50%),
    var(--bg-2);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); max-width: 20ch; }
.section-head p { color: var(--muted); max-width: 48ch; margin: 0; font-size: 17px; }
.kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: .25s transform, .25s border-color, .25s box-shadow;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }

/* ── Blog cards (advanced) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: 28px;
}
.blog-grid--compact { grid-template-columns: repeat(3, 1fr); }
.blog-page-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
}
.blog-page-head__brand {
  width: clamp(120px, 16vw, 180px);
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a1628, #0f2847);
  border: 1px solid rgba(0, 180, 255, .22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  display: grid;
  place-items: center;
}
.blog-page-head__logo {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.blog-card {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg, 20px);
}
.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2847 55%, #12345f 100%);
  border-bottom: 1px solid var(--line);
}
.blog-card__cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}
.blog-card:hover .blog-card__cover { transform: scale(1.06); }
.blog-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, .08) 0%, rgba(5, 10, 20, .55) 100%),
    linear-gradient(135deg, rgba(0, 120, 255, .12), transparent 55%);
  pointer-events: none;
}
.blog-card__cover--brand {
  display: grid;
  place-items: center;
  padding: 24px;
}
.blog-card__brand-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(0, 180, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.blog-card__brand-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, .28), transparent 68%);
  filter: blur(8px);
}
.blog-card__brand-logo {
  position: relative;
  z-index: 1;
  width: min(78%, 220px);
  max-height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .35));
  transition: transform .35s ease, filter .35s ease;
}
.blog-card:hover .blog-card__brand-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 12px 28px rgba(0, 180, 255, .25));
}
.blog-card__logo-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 180, 255, .25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}
.blog-card__logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-card__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 18px var(--accent-glow);
}
.blog-card__date,
.blog-card .blog-date {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  margin: 0 !important;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .9) !important;
  border: 1px solid rgba(0, 120, 255, .16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}
.blog-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card__title {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.25;
  color: var(--text);
  transition: color .2s;
}
.blog-card:hover .blog-card__title { color: var(--accent); }
.blog-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .02em;
}
.blog-card__cta svg { transition: transform .2s ease; }
.blog-card:hover .blog-card__cta svg { transform: translateX(4px); }
.blog-card__views {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* Blog article detail */
.blog-article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.blog-article__hero { position: relative; }
.blog-article__cover {
  position: relative;
  min-height: clamp(220px, 34vw, 360px);
  background-size: cover;
  background-position: center;
}
.blog-article__cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, .12), rgba(5, 10, 20, .72)),
    linear-gradient(90deg, rgba(0, 120, 255, .18), transparent 50%);
}
.blog-article__cover-logo {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 180, 255, .22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
  max-width: min(220px, 42vw);
}
.blog-article__cover-logo img {
  display: block;
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.blog-article__cover--brand {
  min-height: clamp(220px, 30vw, 320px);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a1628, #0f2847 60%, #12345f);
}
.blog-article__brand-logo {
  position: relative;
  z-index: 1;
  width: min(320px, 62vw);
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .35));
}
.blog-article__content { padding: clamp(24px, 4vw, 40px); }
.blog-article__chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.blog-related { margin-top: clamp(40px, 6vw, 64px); }

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.icon-blob {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  font-size: 18px;
}
.cover {
  height: 180px;
  border-radius: calc(var(--radius) - 4px);
  margin: -8px -8px 18px;
  position: relative;
  overflow: hidden;
}
.mock-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: var(--muted); font-size: 12px; font-weight: 600; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-card:hover { border-color: var(--accent); }

.badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.price { font-family: Outfit, sans-serif; font-size: 28px; font-weight: 800; margin: 10px 0 4px; color: var(--text); }
.price-row { display: flex; flex-direction: column; gap: 2px; margin: 10px 0 4px; }
.price-compare { font-size: 14px; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.price-period { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 4px; }
.price-breakdown { display: flex; flex-wrap: wrap; gap: 12px; margin: 10px 0 16px; font-size: 14px; color: var(--muted); }
.price-breakdown strong { color: var(--text); }
.pkg-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.pkg-desc { margin: 8px 0 0; min-height: 40px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted); font-weight: 600; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  position: relative;
  transition: border-color .2s;
}
.step:hover { border-color: var(--accent-border); }
.step b {
  display: block;
  color: var(--accent-3);
  font-size: 13px;
  letter-spacing: .14em;
  margin-bottom: 12px;
  font-weight: 800;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }

/* ── Stats (full-width bar) ── */
.stats-bar {
  width: 100%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-2));
  border-block: 1px solid var(--line);
  padding: clamp(40px, 5vw, 56px) 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--line);
}
.stat {
  background: #ffffff;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: background .2s;
}
.stat:hover { background: var(--accent-soft); }
.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-family: Outfit, sans-serif;
  font-weight: 800;
  color: var(--accent);
}

/* ── Testimonials ── */
.quote { font-size: 18px; font-weight: 600; line-height: 1.6; color: var(--text); }
.person { display: flex; gap: 14px; align-items: center; margin-top: 20px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  font-size: 16px;
}

/* ── FAQ ── */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--card);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--accent-border); }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16px; }
.faq p { color: var(--muted); margin: 12px 0 0; line-height: 1.7; }

/* ── CTA ── */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, var(--accent-soft), rgba(45,212,191,.08)),
    #ffffff;
  border: 1px solid var(--accent-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 32px); max-width: 24ch; }

/* ── Inner pages ── */
.page-hero {
  padding: clamp(48px, 6vw, 72px) 0 clamp(24px, 3vw, 36px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--gradient-a), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 14px; font-weight: 600; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent-2); }
.prose { color: var(--muted); max-width: 72ch; line-height: 1.75; }
.prose h2, .prose h3 { margin-top: 1.6em; color: var(--text); }
.prose ul { padding-left: 20px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 32px; align-items: center; }
.chip {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: .2s;
}
.chip.active, .chip:hover {
  color: var(--btn-text);
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.search { display: flex; gap: 10px; margin-left: auto; }
.search input, .form input, .form textarea, .form select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 13px 16px;
  font: 600 14px "Plus Jakarta Sans", Manrope, sans-serif;
  transition: border-color .2s;
}
.search input:focus, .form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--accent-border);
}
.form label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form .field { margin-bottom: 18px; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; }
.alert-ok { background: rgba(52,211,153,.12); color: var(--ok); border: 1px solid rgba(52,211,153,.25); }
.alert-err { background: rgba(248,113,113,.12); color: var(--danger); border: 1px solid rgba(248,113,113,.25); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ── Packages ── */
.pkg {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--card);
}
.pkg.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow);
}
.pkg ul { padding-left: 18px; color: var(--muted); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 0; list-style: none; }
.feature-list li::before { content: "✓ "; color: var(--accent-3); font-weight: 800; }

/* ── Software gallery ── */
.section-head { margin-bottom: 28px; }
.section-head h2 { margin-bottom: 6px; }
.sw-gallery-section { padding-top: 0; }
.sw-gallery {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sw-gallery__stage {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--gradient-a), transparent 65%),
    linear-gradient(180deg, var(--bg-2), var(--card));
  padding: clamp(16px, 3vw, 28px);
  min-height: 320px;
  display: grid;
  place-items: center;
}
.sw-gallery__figure {
  margin: 0;
  width: min(100%, 980px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  background: #0a1628;
}
.sw-gallery__main {
  display: block;
  width: 100%;
  max-height: min(62vh, 560px);
  object-fit: contain;
  background: #0a1628;
}
.sw-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: .2s transform, .2s border-color, .2s background;
  z-index: 2;
}
.sw-gallery__nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--accent-border);
  background: #fff;
}
.sw-gallery__nav--prev { left: clamp(10px, 2vw, 20px); }
.sw-gallery__nav--next { right: clamp(10px, 2vw, 20px); }
.sw-gallery__zoom {
  position: absolute;
  right: clamp(10px, 2vw, 20px);
  bottom: clamp(10px, 2vw, 20px);
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: 700 12px "Plus Jakarta Sans", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 24px var(--accent-glow);
  cursor: pointer;
  z-index: 2;
}
.sw-gallery__thumbs {
  display: flex;
  gap: 10px;
  padding: 16px 18px 10px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.sw-gallery__thumb {
  flex: 0 0 auto;
  width: 92px;
  height: 64px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  opacity: .72;
  transition: .2s opacity, .2s border-color, .2s transform;
}
.sw-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sw-gallery__thumb:hover { opacity: 1; transform: translateY(-2px); }
.sw-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}
.sw-gallery__meta {
  display: flex;
  justify-content: center;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: var(--bg-2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 10, 20, .92);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
.lightbox__img {
  max-width: min(1200px, 96vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.pagination { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  transition: .2s;
}
.pagination a:hover { border-color: var(--accent-border); background: var(--accent-soft); }

/* ── Footer ── */
.footer {
  border-top: 1px solid color-mix(in srgb, var(--footer-text, var(--line)) 12%, transparent);
  padding: clamp(56px, 7vw, 80px) 0 28px;
  margin-top: 0;
  color: var(--footer-muted, var(--muted));
  background: var(--footer-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer a { color: var(--footer-muted, var(--muted)); display: block; padding: 6px 0; transition: color .2s; font-weight: 600; font-size: 14px; }
.footer a:hover { color: var(--accent-3, var(--accent-2)); }
.footer-title {
  color: var(--footer-text, var(--text));
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-weight: 600;
}

/* ── WhatsApp ── */
.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: #052e16;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 12px 32px rgba(34,197,94,.35);
  transition: transform .2s;
}
.wa:hover { transform: scale(1.08); }

.empty {
  padding: 48px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .device { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 960px) {
  .grid-3, .grid-4, .steps, .stats, .footer-grid, .grid-2, .feature-list, .blog-grid, .blog-grid--compact { grid-template-columns: 1fr 1fr; }
  .blog-page-head { grid-template-columns: 1fr; }
  .nav, .header-cta { display: none; }
  .header.nav-open .nav, .header.nav-open .header-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--bg);
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .header.nav-open .nav a.active::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .cta-banner, .section-head, .hero-meta, .copy, .search { flex-direction: column; align-items: stretch; }
  .search { margin-left: 0; width: 100%; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .steps, .stats, .footer-grid, .grid-2, .feature-list, .blog-grid, .blog-grid--compact { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
}
