/*
Theme Name: AV Webstart
Theme URI: https://avwebstart.md
Description: Temă modernă pentru agenția AV Webstart — soluții web, design și SEO
Version: 1.0.0
Author: AV Webstart
Author URI: https://avwebstart.md
Text Domain: avwebstart
*/

:root {
  --bg-0: #060a1f;
  --bg-1: #0a0f2c;
  --bg-2: #0e1538;
  --card: rgba(20, 28, 64, 0.55);
  --card-strong: rgba(28, 38, 82, 0.7);
  --line: rgba(120, 140, 220, 0.12);
  --line-strong: rgba(120, 140, 220, 0.22);
  --text: #e7ecff;
  --muted: #9aa3c7;
  --muted-2: #6e779d;
  --blue: #4f8bff;
  --purple: #9b7cff;
  --grad: linear-gradient(95deg, #6a8dff 0%, #b07cff 100%);
  --grad-soft: linear-gradient(135deg, rgba(106,141,255,0.18) 0%, rgba(176,124,255,0.18) 100%);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(155, 124, 255, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 30%, rgba(79, 139, 255, 0.14), transparent 60%),
    radial-gradient(1200px 800px at 50% 110%, rgba(79, 139, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #060a1f 0%, #07091d 40%, #050816 100%);
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(1px 1px at 12% 85%, rgba(255,255,255,0.25), transparent 50%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(1px 1px at 92% 35%, rgba(255,255,255,0.25), transparent 50%);
  opacity: 0.7;
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 10, 31, 0.55);
  border-bottom: 1px solid rgba(120, 140, 220, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex; gap: 38px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a { color: var(--text); }
.nav-links a.active::after,
.nav-links .current-menu-item > a::after,
.nav-links .current-page-ancestor > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em;
  padding: 14px 22px; border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--grad); color: white;
  box-shadow: 0 16px 40px -16px rgba(106,141,255,0.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -18px rgba(155,124,255,0.85);
}
.btn-ghost {
  background: rgba(28, 38, 82, 0.6); color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(40, 52, 100, 0.8); }
.btn svg { width: 14px; height: 14px; }

/* ---------- HERO ---------- */
.hero { padding: 80px 0 64px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(28, 38, 82, 0.4);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--muted);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad); box-shadow: 0 0 12px #9b7cff;
}
h1.hero-title {
  font-size: 92px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.02;
  margin: 24px 0 24px;
}
h1.hero-title .accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 19px; color: var(--muted); max-width: 480px; margin: 0 0 32px; line-height: 1.55; }
.checks { list-style: none; padding: 0; margin: 0 0 40px; display: flex; flex-direction: column; gap: 14px; }
.checks li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: #cfd5f3; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(106,141,255,0.18);
  display: grid; place-items: center; color: #8aa6ff; flex-shrink: 0;
}
.check-icon svg { width: 12px; height: 12px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; aspect-ratio: 5 / 4; }
.laptop {
  position: absolute; inset: 6% 0 0 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a2050 0%, #0d1438 100%);
  border: 1px solid rgba(120, 140, 220, 0.25);
  box-shadow: 0 60px 100px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 80px -20px rgba(155,124,255,0.3);
  overflow: hidden; padding: 14px;
}
.laptop::after {
  content: "";
  position: absolute; left: -10%; right: -10%; bottom: -22px;
  height: 24px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 70%);
  z-index: -1;
}
.screen {
  position: relative; width: 100%; height: 100%; border-radius: 8px;
  background:
    radial-gradient(circle at 70% 50%, rgba(155,124,255,0.18), transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(79,139,255,0.14), transparent 60%),
    linear-gradient(180deg, #0a1138 0%, #060a26 100%);
  overflow: hidden; padding: 22px 26px;
}
.screen-header { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.mini-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--grad); display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: white;
}
.mini-text { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; }
.mini-logo-img { height: 30px; width: auto; display: block; object-fit: contain; }
.screen h3 { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.01em; line-height: 1.2; }
.screen h3 span { color: var(--muted); font-weight: 500; display: block; font-size: 16px; margin-top: 4px; }
.screen-cta {
  margin-top: 18px; display: inline-block; padding: 8px 16px;
  border-radius: 999px; border: 1px solid var(--line-strong);
  background: rgba(28, 38, 82, 0.5); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--muted);
}
.orb { position: absolute; right: -10%; top: 38%; width: 60%; aspect-ratio: 1; transform: translateY(-50%); }
.orb svg { width: 100%; height: 100%; filter: drop-shadow(0 0 40px rgba(155,124,255,0.6)); }
.grid-floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background-image:
    linear-gradient(rgba(106,141,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,141,255,0.18) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(360px) rotateX(56deg); transform-origin: bottom center;
  mask-image: linear-gradient(180deg, transparent 0%, black 60%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 60%);
}

.float-card {
  position: absolute;
  background: rgba(20, 28, 64, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: 16px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7); min-width: 230px;
}
.float-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-soft); display: grid; place-items: center; color: #b9a8ff; flex-shrink: 0;
}
.float-card .ic svg { width: 22px; height: 22px; }
.float-card .t { font-weight: 700; font-size: 15px; }
.float-card .s { font-size: 12px; color: var(--muted); margin-top: 2px; }
.float-card .arrow { margin-left: auto; color: var(--muted-2); }
.fc-1 { top: 4%; right: -2%; animation: float 6s ease-in-out infinite; }
.fc-2 { left: 28%; top: 40%; animation: float 6s ease-in-out infinite 1.5s; }
.fc-3 { right: -4%; bottom: 14%; animation: float 6s ease-in-out infinite 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- FEATURE STRIP ---------- */
.features {
  margin-top: 24px; padding: 28px 36px; border-radius: 24px;
  background: rgba(14, 21, 56, 0.55); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature { display: flex; align-items: center; gap: 18px; padding: 6px 8px; }
.feature .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-soft); display: grid; place-items: center; color: #b9a8ff; flex-shrink: 0;
}
.feature .ic svg { width: 24px; height: 24px; }
.feature .label { font-size: 12px; letter-spacing: 0.22em; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.feature .desc { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ---------- SECTIONS ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.eyebrow { font-size: 12px; letter-spacing: 0.28em; font-weight: 700; color: var(--muted-2); text-transform: uppercase; margin-bottom: 16px; }
.eyebrow.with-icon { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); }
h2.h-section { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 18px; }
h2.h-section .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.6; }

/* ---------- SERVICES ---------- */
.row-2 { display: grid; grid-template-columns: 1.45fr 1fr; gap: 80px; align-items: start; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.svc {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 28px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--card-strong); }
.svc .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; color: #b9a8ff; margin-bottom: 20px; }
.svc .ic svg { width: 26px; height: 26px; }
.svc h4 { font-size: 18px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.svc p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ---------- ABOUT ---------- */
.about p { font-size: 15px; color: var(--muted); margin: 20px 0 36px; line-height: 1.7; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; color: #b9a8ff; margin-bottom: 14px; }
.stat .ic svg { width: 18px; height: 18px; }
.stat .num { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.stat .lbl { font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 8px; margin-top: 8px; letter-spacing: 0.04em; }

/* ---------- PORTFOLIO ---------- */
.portfolio-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case {
  border-radius: 20px; background: var(--card); border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.case:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.case-img {
  aspect-ratio: 16 / 11; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a2050 0%, #0d1438 100%);
}
.case-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(106,141,255,0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(155,124,255,0.4), transparent 50%);
}
.case-img .mock {
  position: absolute; inset: 18%; border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08); padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.case-img .mock .bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 70%; }
.case-img .mock .bar.s { width: 40%; }
.case-img .mock .bar.accent { background: var(--grad); width: 50%; height: 8px; }
.case-img .mock .block { margin-top: auto; height: 30%; border-radius: 6px; background: rgba(155,124,255,0.18); border: 1px solid rgba(155,124,255,0.3); }
.case-logo-wrap {
  position: absolute; inset: 0;
}
.case-logo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.case-body { padding: 22px 24px 26px; }
.case-body-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.case .tag { font-size: 11px; letter-spacing: 0.18em; color: var(--purple); font-weight: 700; text-transform: uppercase; }
.case-visit {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted-2);
  padding: 5px 10px; border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(28,38,82,0.4);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.case-visit:hover { color: var(--text); border-color: var(--line-strong); background: rgba(40,52,100,0.6); }
.case-visit svg { width: 11px; height: 11px; }
.case h4 { margin: 8px 0 6px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.case p { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- PRICING ---------- */
.pricing-head { text-align: center; margin-bottom: 60px; }
.pricing-head .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 36px 32px;
  display: flex; flex-direction: column; position: relative;
}
.plan.featured {
  background: linear-gradient(180deg, rgba(106,141,255,0.12), rgba(155,124,255,0.04)), var(--card-strong);
  border-color: rgba(155,124,255,0.4);
  box-shadow: 0 30px 80px -30px rgba(155,124,255,0.4);
}
.plan-tag {
  position: absolute; top: 22px; right: 22px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  padding: 6px 12px; border-radius: 999px; background: var(--grad); color: white;
}
.plan-name { font-size: 14px; letter-spacing: 0.22em; font-weight: 800; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
.plan-price .num { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.plan-price .cur { font-size: 18px; font-weight: 600; color: var(--muted); }
.plan-price .per { font-size: 13px; color: var(--muted-2); margin-left: 4px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 24px; }
.plan ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #cfd5f3; }
.plan ul li .ck { width: 18px; height: 18px; border-radius: 50%; background: rgba(106,141,255,0.18); display: grid; place-items: center; color: #8aa6ff; flex-shrink: 0; margin-top: 2px; }
.plan ul li .ck svg { width: 10px; height: 10px; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- COMPARE TABLE ---------- */
.compare-section-title { margin: 60px 0 24px; }
.compare-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  padding: 20px 24px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.compare-table thead th.feat-label-th {
  text-align: left;
  width: 36%;
  color: var(--muted-2);
  font-weight: 600;
}
.compare-table thead th.featured-col {
  background: linear-gradient(180deg, rgba(155,124,255,0.1), rgba(106,141,255,0.04));
  color: #c4aaff;
}
.compare-table thead th.featured-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.col-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.15em;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  margin-left: 7px;
  vertical-align: middle;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(120,140,220,0.04); }
.compare-table tbody td {
  padding: 15px 24px;
  text-align: center;
  color: var(--muted-2);
  vertical-align: middle;
}
.compare-table tbody td.feat-label-cell {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.compare-table .feat-cell {
  background: linear-gradient(180deg, rgba(155,124,255,0.07), rgba(106,141,255,0.03));
}
.compare-table .no-dash {
  font-size: 16px;
  color: var(--muted-2);
  opacity: 0.4;
}
.compare-table .yes-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(106,141,255,0.15);
  color: #8aa6ff;
}
.compare-table .feat-cell .yes-icon {
  background: rgba(155,124,255,0.22);
  color: #c4aaff;
}
.compare-table .val-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(120,140,220,0.1);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}
.compare-table .feat-cell .val-badge {
  background: rgba(155,124,255,0.15);
  border-color: rgba(155,124,255,0.3);
  color: #c4aaff;
}

/* ---------- CALCULATOR ---------- */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.calc-options { display: flex; flex-direction: column; gap: 28px; }
.calc-group-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text);
  margin-bottom: 14px;
}
.calc-step {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad); color: white;
  font-size: 11px; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0;
}
.calc-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.calc-cards--sm { grid-template-columns: repeat(2, 1fr); }
.calc-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 14px;
  cursor: pointer; display: flex; flex-direction: column; gap: 10px;
  align-items: center; text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  user-select: none;
}
.calc-card svg { width: 22px; height: 22px; color: var(--muted-2); transition: color 0.2s; }
.calc-card:hover { border-color: var(--line-strong); background: var(--card-strong); transform: translateY(-2px); }
.calc-card.active {
  border-color: rgba(155,124,255,0.55);
  background: linear-gradient(180deg, rgba(155,124,255,0.12), rgba(106,141,255,0.06));
}
.calc-card.active svg { color: #c4aaff; }
.cc-label { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.cc-price { font-size: 11px; color: var(--muted-2); }
.calc-card.active .cc-price { color: #c4aaff; }

.calc-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.calc-check {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.calc-check:hover { border-color: var(--line-strong); }
.calc-check input { display: none; }
.cc-chk-box {
  width: 18px; height: 18px; border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  background: transparent; flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
.calc-check input:checked ~ .cc-chk-box {
  background: var(--grad); border-color: transparent;
}
.calc-check input:checked ~ .cc-chk-box::after {
  content: '';
  position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.cc-chk-label { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; }
.cc-chk-price { font-size: 11px; color: var(--muted-2); white-space: nowrap; }
.calc-check input:checked ~ .cc-chk-box + .cc-chk-label { color: #c4aaff; }

.calc-result { position: sticky; top: 90px; }
.calc-result-inner {
  background: linear-gradient(180deg, rgba(155,124,255,0.1), rgba(106,141,255,0.05)), var(--card-strong);
  border: 1px solid rgba(155,124,255,0.35);
  border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 30px 80px -30px rgba(155,124,255,0.3);
}
.calc-result-label {
  font-size: 11px; letter-spacing: 0.22em; font-weight: 800;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px;
}
.calc-result-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 10px;
}
.calc-result-price .cur { font-size: 20px; font-weight: 700; color: var(--muted); }
.calc-num {
  font-size: 64px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-result-range {
  font-size: 12px; color: var(--muted-2);
  margin-bottom: 16px;
}
.calc-result-note {
  font-size: 12px; color: var(--muted-2); line-height: 1.6;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.calc-breakdown {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cb-title {
  font-size: 10px; letter-spacing: 0.2em; font-weight: 800;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px;
}
.cb-row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); padding: 5px 0;
  border-bottom: 1px solid rgba(120,140,220,0.06);
}
.cb-row span:last-child { font-weight: 700; color: var(--text); }
.cb-total {
  margin-top: 6px; padding-top: 8px;
  border-top: 1px solid var(--line-strong);
  border-bottom: none;
  font-weight: 700; color: var(--text);
}
.cb-total span { color: #c4aaff !important; font-size: 14px; }

@media (max-width: 1100px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}
@media (max-width: 720px) {
  .calc-cards { grid-template-columns: repeat(2, 1fr); }
  .calc-checks { grid-template-columns: 1fr; }
}

/* ---------- TIMELINE ---------- */
.tl { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 28px; }
.tl::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(106,141,255,0.5), rgba(155,124,255,0.1));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding-bottom: 28px;
  align-items: start;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -28px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(155,124,255,0.5);
  flex-shrink: 0;
}
.tl-year {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; color: var(--purple);
  padding-top: 4px;
}
.tl-title {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.tl-text {
  font-size: 13px; color: var(--muted); line-height: 1.55;
}

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; position: relative; }
.step { position: relative; padding: 32px 28px; background: var(--card); border: 1px solid var(--line); border-radius: 20px; }
.step-num { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.step h4 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- TECH ---------- */
.tech-band { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 50px; }
.tech-chip {
  aspect-ratio: 1.4 / 1; background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.tech-chip:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.tech-chip svg { width: 36px; height: 36px; color: #b9a8ff; }
.tech-chip .tn { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px; display: flex; flex-direction: column; }
.quote-mark { font-size: 64px; line-height: 0.5; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: Georgia, serif; margin-bottom: 18px; }
.testi p { margin: 0 0 24px; font-size: 15px; color: #cfd5f3; line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; color: white; font-size: 15px; }
.testi-author .n { font-weight: 700; font-size: 14px; }
.testi-author .r { font-size: 12px; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: #f5b942; margin-bottom: 12px; }
.stars svg { width: 14px; height: 14px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
details.faq { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 0; transition: border-color 0.2s ease; }
details.faq[open] { border-color: var(--line-strong); }
details.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 15px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus { width: 28px; height: 28px; border-radius: 50%; background: rgba(106,141,255,0.15); display: grid; place-items: center; color: #b9a8ff; flex-shrink: 0; transition: transform 0.25s ease, background 0.2s ease; }
details.faq[open] summary .plus { transform: rotate(45deg); background: var(--grad); color: white; }
details.faq .a { padding: 0 26px 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ---------- CONTACT ---------- */
.contact-card {
  background: linear-gradient(135deg, rgba(106,141,255,0.10), rgba(155,124,255,0.06)), rgba(14, 21, 56, 0.6);
  border: 1px solid var(--line-strong); border-radius: 28px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,124,255,0.25), transparent 70%);
  right: -100px; top: -100px; pointer-events: none;
}
.contact-card h2 { margin: 0 0 18px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; position: relative; }
.contact-info .item { display: flex; gap: 16px; align-items: center; }
.contact-info .item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: #b9a8ff; display: grid; place-items: center; flex-shrink: 0; }
.contact-info .item .ic svg { width: 20px; height: 20px; }
.contact-info .item .lbl { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--muted-2); text-transform: uppercase; }
.contact-info .item .val { font-size: 16px; font-weight: 600; margin-top: 2px; }

.form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.form label { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; color: var(--muted-2); text-transform: uppercase; margin-bottom: 6px; display: block; }
.form input, .form textarea {
  width: 100%; background: rgba(6, 10, 31, 0.6); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 14px;
  transition: border 0.2s ease, background 0.2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--purple); background: rgba(6, 10, 31, 0.85); }
.form textarea { min-height: 110px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-notice { font-size: 14px; padding: 12px 16px; border-radius: 10px; margin-top: 8px; }
.form-notice.success { background: rgba(106,141,255,0.15); color: #8aa6ff; border: 1px solid rgba(106,141,255,0.3); }
.form-notice.error { background: rgba(255,80,80,0.1); color: #ff8080; border: 1px solid rgba(255,80,80,0.3); }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--line); padding: 60px 0 30px; margin-top: 80px; position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 48px; }
.foot-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 20px 0 0; max-width: 320px; }
.foot-col h5 { font-size: 11px; letter-spacing: 0.22em; font-weight: 800; color: var(--text); text-transform: uppercase; margin: 0 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.foot-col ul a:hover { color: var(--text); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; color: var(--muted-2); font-size: 13px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(28, 38, 82, 0.5); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); transition: all 0.2s;
}
.socials a:hover { color: white; background: var(--grad); border-color: transparent; }
.socials a svg { width: 15px; height: 15px; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { padding: 80px 0 60px; text-align: center; position: relative; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: 72px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin: 0 0 18px; }
.page-hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p.lead { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 auto; line-height: 1.6; }
.page-hero .crumbs { display: flex; justify-content: center; gap: 8px; font-size: 12px; color: var(--muted-2); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 28px; font-weight: 700; }
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs span { color: var(--purple); }

/* ---------- BLOG / ARCHIVE ---------- */
.post-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.post-read-time { font-size: 11px; color: var(--muted-2); }
.post-date { font-size: 12px; color: var(--muted); }
.post-read-link { font-size: 12px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 0.1em; }

/* ---------- SINGLE POST ---------- */
.single-post { max-width: 780px; margin: 0 auto; }
.single-post h1 { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 20px; }
.single-post .post-info { display: flex; gap: 20px; align-items: center; color: var(--muted); font-size: 14px; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.single-post .post-info .tag { color: var(--purple); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.single-post .entry-content { font-size: 17px; line-height: 1.8; color: #cfd5f3; }
.single-post .entry-content h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 20px; color: var(--text); }
.single-post .entry-content h3 { font-size: 26px; font-weight: 700; margin: 36px 0 16px; color: var(--text); }
.single-post .entry-content p { margin: 0 0 24px; }
.single-post .entry-content ul, .single-post .entry-content ol { margin: 0 0 24px; padding-left: 28px; }
.single-post .entry-content li { margin-bottom: 8px; }
.single-post .entry-content a { color: var(--blue); text-decoration: underline; }
.single-post .entry-content blockquote { border-left: 3px solid var(--purple); margin: 32px 0; padding: 20px 28px; background: rgba(155,124,255,0.06); border-radius: 0 12px 12px 0; font-size: 18px; font-style: italic; }
.single-post .entry-content img { width: 100%; border-radius: 16px; margin: 32px 0; }
.single-post .entry-content pre { background: rgba(10,15,44,0.8); border: 1px solid var(--line); border-radius: 12px; padding: 24px; overflow-x: auto; font-size: 14px; margin: 32px 0; }
.single-post .entry-content code { font-family: 'Fira Code', 'Courier New', monospace; background: rgba(106,141,255,0.12); padding: 2px 6px; border-radius: 4px; font-size: 14px; color: #b9a8ff; }
.single-post .entry-content pre code { background: none; padding: 0; color: #cfd5f3; }

/* ---------- PAGE CONTENT ---------- */
.page-content { font-size: 17px; line-height: 1.8; color: #cfd5f3; max-width: 780px; }
.page-content h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 20px; color: var(--text); }
.page-content p { margin: 0 0 24px; }
.page-content ul { margin: 0 0 24px; padding-left: 28px; }
.page-content li { margin-bottom: 8px; }

/* ---------- NEWSLETTER ---------- */
.newsletter-box {
  background: linear-gradient(135deg, rgba(106,141,255,0.10), rgba(155,124,255,0.06)), rgba(14,21,56,0.6);
  border: 1px solid var(--line-strong); border-radius: 28px; padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

/* ---------- NOTIFICATION POPUP ---------- */
.notif-popup {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 340px;
  background: rgba(14, 20, 50, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(155,124,255,0.35);
  border-radius: 20px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
  padding: 22px 20px 20px;
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  pointer-events: none;
}
.notif-popup.notif-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.notif-popup.notif-hiding {
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
}
.notif-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(120,140,220,0.1);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.notif-close:hover { background: rgba(120,140,220,0.2); color: var(--text); }
.notif-close svg { width: 12px; height: 12px; }
.notif-inner { display: flex; gap: 14px; align-items: flex-start; }
.notif-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(106,141,255,0.2), rgba(155,124,255,0.2));
  border: 1px solid rgba(155,124,255,0.3);
  display: grid; place-items: center;
  color: #c4aaff; flex-shrink: 0;
}
.notif-icon svg { width: 18px; height: 18px; }
.notif-body { flex: 1; min-width: 0; }
.notif-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em;
  color: #7aefb2; margin-bottom: 7px;
}
.notif-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7aefb2;
  box-shadow: 0 0 6px #7aefb2;
  animation: notif-pulse 1.8s ease-in-out infinite;
}
@keyframes notif-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.notif-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: 6px;
}
.notif-count {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 16px;
}
.notif-sub {
  font-size: 12px; color: var(--muted); line-height: 1.55;
  margin-bottom: 14px;
}
.notif-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  color: white;
  background: var(--grad);
  padding: 9px 16px; border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px -8px rgba(155,124,255,0.6);
}
.notif-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(155,124,255,0.8); }
.notif-cta svg { width: 12px; height: 12px; }

@media (max-width: 420px) {
  .notif-popup { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 700px; margin: 0 auto; width: 100%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .row-2 { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-band { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-box { grid-template-columns: 1fr; gap: 32px; }
  h1.hero-title { font-size: 64px; }
  h2.h-section { font-size: 40px; }
  .page-hero h1 { font-size: 56px; }
  .single-post h1 { font-size: 40px; }
}
/* ---------- HAMBURGER & MOBILE NAV ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(28,38,82,0.6);
  border: 1px solid var(--line);
  cursor: pointer; padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-burger:hover { background: rgba(40,52,100,0.8); }
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
}
.nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; width: 0; }
.nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(6,10,31,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  z-index: 49;
}
.nav.nav-open .nav-mobile {
  max-height: 600px;
  padding: 16px 32px 28px;
}
.nav-mobile-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.nav-mobile-links li { border-bottom: 1px solid var(--line); }
.nav-mobile-links li:last-child { border-bottom: none; }
.nav-mobile-links a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links .current-menu-item > a { color: var(--text); }
.nav-mobile-cta { width: 100%; justify-content: center; margin-top: 20px; }

/* ---------- SCROLL ANIMATIONS ---------- */
.anim-ready .svc,
.anim-ready .plan,
.anim-ready .step,
.anim-ready .testi,
.anim-ready .case,
.anim-ready .stat,
.anim-ready .tech-chip,
.anim-ready .tl-item,
.anim-ready details.faq,
.anim-ready .feature,
.anim-ready .calc-group,
.anim-ready .compare-wrap {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.anim-ready .svc.anim-in,
.anim-ready .plan.anim-in,
.anim-ready .step.anim-in,
.anim-ready .testi.anim-in,
.anim-ready .case.anim-in,
.anim-ready .stat.anim-in,
.anim-ready .tech-chip.anim-in,
.anim-ready .tl-item.anim-in,
.anim-ready details.faq.anim-in,
.anim-ready .feature.anim-in,
.anim-ready .calc-group.anim-in,
.anim-ready .compare-wrap.anim-in {
  opacity: 1;
  transform: none;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: var(--grad); color: white;
  padding: 12px 24px; font-weight: 700; font-size: 14px;
  border-radius: 0 0 12px 12px;
  transition: none;
}
.skip-link:focus {
  left: 50%; transform: translateX(-50%);
  width: auto; height: auto;
  overflow: visible;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- HERO SCROLL HINT ---------- */
.hero-scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  margin-top: 48px; color: var(--muted-2);
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--purple), transparent);
  margin-bottom: 6px;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ---------- METRICS STRIP ---------- */
.metrics-strip {
  position: relative; z-index: 2;
  padding: 0 0 60px;
}
.metrics-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(14,21,56,0.55);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 48px;
}
.metric-item {
  flex: 1; text-align: center; padding: 0 24px;
}
.metric-num {
  font-size: 48px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.metric-lbl {
  font-size: 13px; color: var(--muted); letter-spacing: 0.06em;
}
.metric-sep {
  width: 1px; height: 52px; background: var(--line-strong);
  flex-shrink: 0;
}

/* ---------- ABOUT VALUES ---------- */
.about-values {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 32px;
}
.about-value {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.about-value:hover { border-color: var(--line-strong); background: var(--card-strong); }
.about-value-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad-soft); color: #b9a8ff;
  display: grid; place-items: center; flex-shrink: 0;
}
.about-value-icon svg { width: 18px; height: 18px; }
.about-value-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.about-value-text  { font-size: 13px; color: var(--muted); }

/* ---------- PROCESS STEP ICON ---------- */
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-soft); color: #b9a8ff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step-icon svg { width: 24px; height: 24px; }
.step h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- CTA BANNER ---------- */
.cta-banner-section { padding: 40px 0 80px; }
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(106,141,255,0.12), rgba(155,124,255,0.08));
  border: 1px solid rgba(155,124,255,0.3);
  border-radius: 28px; padding: 60px 64px;
}
.cta-banner-glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,124,255,0.22), transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.cta-banner-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-text { max-width: 560px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- CONTACT VAL LINKS ---------- */
.contact-info .item a.val {
  font-size: 16px; font-weight: 600; margin-top: 2px;
  color: var(--text); display: block;
  transition: color 0.2s;
}
.contact-info .item a.val:hover { color: var(--blue); }

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(20,28,64,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  color: var(--muted);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, color 0.2s;
  pointer-events: none;
}
.back-top:hover { background: var(--grad); color: white; border-color: transparent; }
.back-top svg { width: 18px; height: 18px; }
.back-top.bt-visible { opacity: 1; transform: none; pointer-events: all; }

@media (max-width: 720px) {
  .nav-burger { display: flex; }
  .nav-cta-desk { display: none; }
  .nav-mobile { display: block; }
  .nav-links { display: none; }
  .features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  h1.hero-title { font-size: 48px; }
  .float-card { min-width: 180px; padding: 12px 14px; }
  .float-card .t { font-size: 13px; }
  .page-hero h1 { font-size: 42px; }
  .single-post h1 { font-size: 32px; }
  .newsletter-box { padding: 36px 28px; }
  .contact-card { padding: 28px; }
  .back-top { left: 16px; bottom: 16px; }
  .lang-dropdown { right: auto; left: 0; }
  .metrics-grid { flex-direction: column; gap: 28px; padding: 32px 28px; }
  .metric-sep { width: 100%; height: 1px; }
  .metric-num { font-size: 38px; }
  .cta-banner { padding: 36px 28px; }
  .cta-banner-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 1100px) {
  .metrics-grid { padding: 28px 32px; }
  .metric-num { font-size: 40px; }
  .cta-banner { padding: 48px 40px; }
  .cta-banner-content { gap: 32px; }
}

/* ---- Language Switcher ---- */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.lang-btn:hover { background: rgba(255,255,255,0.09); border-color: var(--line-strong); }
.lang-btn svg { width: 11px; height: 11px; opacity: 0.6; transition: transform 0.2s; flex-shrink: 0; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-flag { font-size: 15px; line-height: 1; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-1, #0d1235);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 6px;
  min-width: 150px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lang-switcher.open .lang-dropdown { display: flex; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.lang-opt:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lang-opt.active { color: var(--text); background: rgba(106,141,255,0.12); }
.lang-opt-flag { font-size: 17px; line-height: 1; flex-shrink: 0; }
.lang-opt-name { flex: 1; }
.lang-check { margin-left: auto; color: var(--purple); display: flex; }
