/* ==========================================================================
   NGN Solutions — teljes weboldal
   Egyetlen közös stíluslap a főoldalhoz és mindhárom szolgáltatás-ághoz
   (IT szolgáltatások, Okosotthon, OSINT).

   Design-nyelv: egy tömör, telített indigó "hero-pillanat" oldalanként +
   egyébként visszafogott, monokróm, illusztráció-vezérelt tartalom lágy
   kék-szürke háttéren. Szerves hullám-elválasztók, lebegő "üveg" kártyák,
   pill gombok, Figtree tipográfia.
   ========================================================================== */

:root {
  --indigo: #3235d8;
  --indigo-deep: #2429b0;
  --indigo-light: #6f73f0;
  --indigo-tint: #eceeff;
  --mint: #00c48c;
  --coral: #ff6b57;
  --amber: #ffb200;
  --ink: #15171c;
  --ink-soft: #55606f;
  --ink-faint: #8189a0;
  --border: rgba(21, 23, 28, 0.09);
  --surface: #ffffff;
  --surface-alt: #f3f6fc;
  --bg-top: #eef3fb;
  --bg-bottom: #d7e2ef;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --max-width: 1240px;
  --header-h: 76px;
  --shadow: 0 16px 40px -20px rgba(21, 23, 40, 0.28);
  --shadow-soft: 0 10px 26px -16px rgba(21, 23, 40, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-top) 500px, var(--bg-bottom) 2200px, var(--bg-bottom) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--indigo);
}
a:hover {
  color: var(--indigo-deep);
}

h1, h2, h3, p {
  margin: 0;
}
h1, h2, h3, .display {
  font-family: "Figtree", system-ui, sans-serif;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--indigo);
  color: #fff;
}
.btn-primary:hover {
  background: var(--indigo-deep);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(50, 53, 216, 0.55);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; color: #fff; }

.btn-outline-dark {
  border-color: var(--border);
  color: var(--ink);
  background: #fff;
}
.btn-outline-dark:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

/* hero-only variants: uppercase, tracked, used on the bold indigo hero */
.btn-hero-ghost {
  background: #fff;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13.5px;
}
.btn-hero-ghost:hover { background: #f2f2ff; color: var(--indigo-deep); }

.btn-hero-solid {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13.5px;
}
.btn-hero-solid:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 2px;
  position: relative;
}
.main-nav a.is-active { color: var(--indigo); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--indigo);
  transition: right 0.25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle .bar {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s var(--ease), top 0.2s var(--ease);
}
.nav-toggle .bar::before { top: -6px; }
.nav-toggle .bar::after { top: 6px; }
body.nav-open .nav-toggle .bar { background: transparent; }
body.nav-open .nav-toggle .bar::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle .bar::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 90;
  background: #fff;
  padding: 8px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  overflow-y: auto;
}
body.nav-open .mobile-nav { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 16px; }

@media (min-width: 1040px) {
  .main-nav { display: flex; align-items: center; gap: 26px; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Bold hero (egy oldalanként, telített indigó) ---------- */
.hero-bold {
  position: relative;
  background: linear-gradient(135deg, #3d40e6 0%, var(--indigo) 55%, #2429b0 100%);
  color: #fff;
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-bold::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 30px, #fff 30px 31px),
    repeating-linear-gradient(25deg, transparent 0 30px, #fff 30px 31px);
}
.hero-bold-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-bold .hero-illustration { margin-bottom: 6px; }
.hero-bold h1 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-bold-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #dcdeff;
  max-width: 520px;
}
.hero-bold-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Light hero (aloldalak: airy, blob dekor + illusztráció) ---------- */
.hero-light {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
  background: linear-gradient(135deg, var(--indigo-tint), #dfe3ff);
  z-index: 0;
  filter: blur(2px);
}
.hero-light-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 860px) {
  .hero-light-layout {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .hero-light-text { flex: 1.05; }
  .hero-light-art { flex: 0.95; }
}
.hero-centered {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  max-width: 700px;
  margin: 0 auto;
}
.hero-centered .hero-light-lead { max-width: 54ch; margin: 0 auto; }
.hero-centered .hero-actions-row { justify-content: center; margin-top: 22px; }

.hero-light .eyebrow { color: var(--indigo); }
.hero-light h1 {
  font-size: clamp(28px, 4.6vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-light-lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-checks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-check-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--indigo-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-check-dot svg { width: 13px; height: 13px; stroke: var(--indigo); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero-actions-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
}
.eyebrow-on-dark { color: #dcdeff; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group .reveal:nth-child(1) { transition-delay: 0.02s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.09s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.23s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.36s; }

/* ---------- Section scaffolding ---------- */
.section { padding: 64px 0; position: relative; }
@media (min-width: 900px) { .section { padding: 92px 0; } }
.section-card { background: rgba(255, 255, 255, 0.55); }
.section-alt { background: rgba(255, 255, 255, 0.45); }
.section-dark {
  background: linear-gradient(135deg, #2b2ec0, var(--indigo-deep));
  color: #fff;
}

.section-head { max-width: 620px; margin-bottom: 40px; }
@media (min-width: 900px) { .section-head { margin-bottom: 52px; } }
.section-head h2 {
  font-size: clamp(25px, 3.6vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}
.section-dark .section-head h2 { color: #fff; }
.section-head p { font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); }
.section-dark .section-head p { color: #d8d9fb; }

/* ---------- Wave divider ---------- */
.wave-divider { display: block; width: 100%; height: 56px; margin-top: -1px; }
.wave-divider path { fill: currentColor; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid { gap: 24px; } }
.grid-audiences, .grid-services { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-audiences, .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-audiences { grid-template-columns: repeat(4, 1fr); }
  .grid-services { grid-template-columns: repeat(3, 1fr); }
}
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(50, 53, 216, 0.25);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--indigo);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon .dot { width: 15px; height: 15px; border: 2px solid var(--indigo); border-radius: 50%; }
.card h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.service-card { text-decoration: none; color: inherit; }
.card-index { font-size: 13px; font-weight: 700; color: var(--indigo-light); letter-spacing: 0.05em; }
.card-link {
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link .arrow { transition: transform 0.2s var(--ease); }
.service-card:hover .card-link .arrow { transform: translateX(4px); }

/* ---------- Floating glass cards (staggered, asymmetric) ---------- */
.float-layout { display: flex; flex-direction: column; gap: 44px; }
.float-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 860px) {
  .float-row { flex-direction: row; align-items: center; gap: 40px; }
  .float-row.reverse { flex-direction: row-reverse; }
}
.float-text { flex: 1; }
.float-text h3 {
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.float-text p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); max-width: 52ch; }
.float-cards { flex: 1; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.float-card {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  max-width: 380px;
}
.float-card:nth-child(2) { align-self: flex-end; }
.float-card:nth-child(3) { align-self: flex-start; }
.float-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 19px; height: 19px; stroke: var(--ink-soft); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.float-card h4 { margin: 0; font-family: "Figtree"; font-size: 15px; font-weight: 700; color: var(--ink); }
.float-card p { margin: 3px 0 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Principles / trust grid (dark section) ---------- */
.trust-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .trust-layout { grid-template-columns: minmax(240px, 1fr) minmax(260px, 1.4fr); gap: 56px; align-items: start; }
}
.trust-intro p { font-size: 16px; line-height: 1.75; color: #d8d9fb; }
.principles-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 560px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
.principle { border-top: 2px solid rgba(255, 255, 255, 0.35); padding-top: 16px; }
.principle h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.principle p { font-size: 14.5px; line-height: 1.65; color: #c7c9f5; }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.step { padding-right: 20px; position: relative; }
.step-number { font-size: 38px; font-weight: 800; color: var(--indigo-tint); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Contact / CTA form ---------- */
.contact-layout { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr); gap: 56px; align-items: start; }
}
.contact-info p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 20px; max-width: 460px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink); }
.contact-details a { text-decoration: none; }

.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-l);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid rgba(21, 23, 28, 0.14);
  border-radius: var(--radius-s);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(50, 53, 216, 0.14);
}
.form-field textarea { resize: vertical; }
.form-field select { appearance: auto; }
.form-note { font-size: 12.5px; line-height: 1.6; color: var(--ink-soft); }
.form-status { font-size: 14px; font-weight: 600; padding-top: 2px; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: var(--indigo); }
.form-status.is-error { color: #c0392b; }

/* spam-csapda: valós felhasználók sosem látják vagy töltik ki */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.consent-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--indigo);
}
.consent-check a { color: var(--indigo); text-decoration: underline; }

/* ---------- Pricing cards ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.pricing-card.is-featured { border-color: var(--indigo); box-shadow: var(--shadow); background: #fff; }
@media (min-width: 760px) {
  .pricing-card.is-featured { transform: translateY(-8px); }
  .pricing-card.is-featured:hover { transform: translateY(-11px); }
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--indigo);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 19px; font-weight: 800; color: var(--ink); }
.pricing-card .pricing-desc { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin-top: -8px; }
.pricing-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.pricing-features li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.pricing-features li svg { width: 15px; height: 15px; stroke: var(--indigo); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; flex-shrink: 0; }
.pricing-note { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); text-align: center; margin-top: 8px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; background: var(--indigo-tint); flex-shrink: 0; position: relative; }
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--indigo);
  top: 50%; left: 50%;
  transition: transform 0.2s var(--ease);
}
.faq-toggle::before { width: 10px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-toggle::after { width: 1.6px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-answer { padding: 0 4px 20px; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); max-width: 760px; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(135deg, #2b2ec0, var(--indigo-deep));
  color: #d8d9fb;
  padding: 48px 0 28px;
}
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand img { height: 26px; width: auto; align-self: flex-start; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #b9bcf0; }
.footer-social { display: flex; gap: 16px; margin-top: 4px; }
.footer-social a { text-decoration: none; color: #b9bcf0; font-size: 13px; font-weight: 700; }
.footer-social a:hover { color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { text-decoration: none; color: #d8d9fb; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 13px; color: #9fa2e0; }

/* ---------- Service detail page (OSINT) ---------- */
.service-quicknav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  overflow-x: auto;
}
.service-quicknav .container { display: flex; gap: 4px; }
.service-quicknav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  padding: 15px 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.service-quicknav a:hover, .service-quicknav a.is-active { color: var(--indigo); border-color: var(--indigo); }

.service-detail { padding: 56px 0; scroll-margin-top: 130px; }
@media (min-width: 900px) { .service-detail { padding: 76px 0; } }
.service-detail-layout { display: grid; gap: 36px; }
@media (min-width: 860px) {
  .service-detail-layout { grid-template-columns: minmax(200px, 0.9fr) minmax(320px, 1.6fr); gap: 56px; }
}
.service-detail-index { font-size: 38px; font-weight: 800; color: var(--indigo-tint); line-height: 1; margin-bottom: 16px; }
.service-detail-heading h2 { font-size: clamp(23px, 3vw, 30px); font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.service-detail-heading p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
.service-detail-body { display: flex; flex-direction: column; gap: 26px; }
.detail-label { font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--indigo); margin-bottom: 12px; }
.includes-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.includes-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.includes-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); margin-top: 7px; flex-shrink: 0; }
.for-whom { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.service-cta { padding: 68px 0; background: linear-gradient(135deg, #2b2ec0, var(--indigo-deep)); color: #fff; text-align: center; }
.service-cta-inner { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.service-cta h2 { font-size: clamp(23px, 3.4vw, 32px); font-weight: 800; }
.service-cta p { font-size: 15.5px; line-height: 1.6; color: #d8d9fb; }

/* ---------- Video placeholder ---------- */
.video-frame {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #3d40e6, var(--indigo) 60%, #2429b0);
}
.video-frame .video-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-play-btn svg { width: 26px; height: 26px; fill: var(--indigo); margin-left: 4px; }
.video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(20, 22, 60, 0.55), transparent);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
