/* zyNox IT Group — one stylesheet, no framework. */

:root {
  --ink: #15112f;
  --ink-2: #4a4666;
  --ink-3: #75718e;
  --bg: #ffffff;
  --bg-2: #f7f6fe;
  --bg-3: #efecfc;
  --line: #e7e3f6;
  --brand: #5841e6;
  --brand-2: #7f63e3;
  --brand-ink: #3d27bd;
  --brand-soft: #eeeafd;
  --blue: #3d8bfd;
  --cyan: #29c4ea;
  --pink: #e24fb2;
  --ok: #17a673;
  --grad: linear-gradient(115deg, #5841e6 0%, #7f63e3 45%, #3d8bfd 100%);
  --grad-soft: linear-gradient(160deg, #f1edff 0%, #e9f1ff 100%);
  --night: #0f0c26;
  --night-2: #1a1540;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgb(21 17 47 / 6%), 0 2px 10px rgb(21 17 47 / 4%);
  --shadow: 0 18px 40px -18px rgb(52 32 150 / 32%);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Roboto, Arial, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font: 400 1.0625rem/1.65 var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-ink); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 5.2vw, 4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 650; letter-spacing: -0.01em; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Layout */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tint { background: var(--bg-2); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split { max-width: none; display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: end; justify-content: space-between; }
.section-head--split > div { max-width: 700px; }
.lead, .is-style-lead { font-size: clamp(1.125rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.muted, .is-style-muted { color: var(--ink-3); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow, .is-style-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding: 6px 12px 6px 10px;
  border-radius: 999px; background: var(--brand-soft); color: var(--brand-ink);
  font-size: .8125rem; font-weight: 650; letter-spacing: .02em;
}
.eyebrow::before, .is-style-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 3px rgb(88 65 230 / 18%); }
.on-dark .eyebrow, .on-dark .is-style-eyebrow { background: rgb(255 255 255 / 10%); color: #d9d3ff; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.split { display: grid; gap: clamp(32px, 6vw, 88px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--flip > :first-child { order: 2; }
}

/* Buttons */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font: 600 1rem/1.2 var(--font); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px -10px rgb(88 65 230 / 65%); }
.btn--primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgb(88 65 230 / 70%); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--brand-ink); border-color: #cfc6f7; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { color: var(--brand-ink); transform: translateY(-1px); }
.btn--outline-light { color: #fff; border-color: rgb(255 255 255 / 28%); }
.btn--outline-light:hover { color: #fff; border-color: #fff; }
.btn--sm { min-height: 42px; padding: 8px 18px; font-size: .9375rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; transition: box-shadow .25s ease; }
/* The blur sits on a pseudo-element: backdrop-filter on the header itself would trap the fixed mobile menu inside it. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgb(255 255 255 / 78%); border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px);
  transition: background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -22px rgb(21 17 47 / 40%); }
.site-header.is-scrolled::before { background: rgb(255 255 255 / 92%); border-color: var(--line); }
.site-header > .container { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; margin-right: auto; flex: none; }
.brand__logo { width: 150px; height: auto; }

.nav ul { list-style: none; margin: 0; padding: 0; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; display: flex; align-items: center; gap: 5px; padding: 10px 14px; border: 0; border-radius: 999px; background: none;
  color: var(--ink); font: 600 .9375rem/1.2 var(--font); text-decoration: none; cursor: pointer; transition: color .15s ease, background-color .15s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__link:hover { color: var(--brand-ink); }
.nav__link:hover::after, .current > .nav__link::after { transform: scaleX(1); }
.current > .nav__link { color: var(--brand-ink); }
.sub-toggle svg { width: 15px; height: 15px; opacity: .6; transition: transform .2s ease; }
.sub-toggle::after { right: 32px; }

.has-sub { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; width: 640px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 30px 60px -24px rgb(40 24 120 / 30%), 0 2px 6px rgb(21 17 47 / 4%);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.mega::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.mega::after {
  content: ""; position: absolute; top: -7px; left: calc(50% - 7px); width: 14px; height: 14px; background: #fff;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); border-radius: 3px 0 0 0;
}
.has-sub:hover > .mega, .has-sub:focus-within > .mega, .has-sub.open > .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-sub:hover .sub-toggle svg, .has-sub.open .sub-toggle svg { transform: rotate(180deg); }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega__item { display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 14px; color: inherit; text-decoration: none; transition: background-color .15s ease; }
.mega__item:hover, .mega__item.is-current { background: var(--bg-2); color: inherit; }
.mega__thumb { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; transition: transform .2s ease; }
.mega__thumb img { width: 42px; height: 42px; object-fit: contain; }
.mega__item:hover .mega__thumb { transform: scale(1.06); }
.mega__text b { display: block; color: var(--ink); font-size: .9375rem; font-weight: 650; margin-bottom: 2px; }
.mega__item:hover .mega__text b { color: var(--brand-ink); }
.mega__text span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .8125rem; line-height: 1.4; color: var(--ink-3); }
.mega__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; padding: 14px 16px; border-radius: 14px; background: var(--grad-soft); font-size: .875rem; color: var(--ink-2); }
.mega__foot .link-arrow { font-size: .875rem; }

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-phone { display: none; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 650; font-size: .9375rem; line-height: 1.15; }
.header-phone small { display: block; font-size: .72rem; font-weight: 600; color: var(--ink-3); letter-spacing: .03em; }
.header-phone__ico { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); transition: transform .2s ease; }
.header-phone__ico svg { width: 17px; height: 17px; }
.header-phone:hover { color: var(--brand-ink); }
.header-phone:hover .header-phone__ico { transform: rotate(-12deg); }
@media (min-width: 1240px) { .header-phone { display: inline-flex; } }

.menu-toggle { display: none; position: relative; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.menu-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.nav-open .menu-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .brand__logo { width: 134px; }
  .menu-toggle { display: block; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0; background: #fff; padding: 8px var(--gutter) 32px; overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
    border-top: 1px solid var(--line);
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav-open, .nav-open body { overflow: hidden; }
  .nav__list { display: block; }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 18px 2px; border-radius: 0; font-size: 1.125rem; }
  .nav__link::after { display: none; }
  .sub-toggle svg { width: 20px; height: 20px; }
  .mega { position: static; width: auto; padding: 0 0 14px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .mega::after, .mega::before { display: none; }
  .has-sub.open > .mega, .has-sub:hover > .mega, .has-sub:focus-within > .mega { transform: none; }
  .has-sub.open > .mega { display: block; }
  .has-sub:hover .sub-toggle svg { transform: none; }
  .has-sub.open .sub-toggle svg { transform: rotate(180deg); }
  .mega__grid { grid-template-columns: 1fr; }
  .mega__item { padding: 8px; }
  .mega__thumb { width: 44px; height: 44px; border-radius: 12px; }
  .mega__thumb img { width: 36px; height: 36px; }
  .mega__text span { -webkit-line-clamp: 1; }
  .mega__foot { display: none; }
  .nav .mobile-cta { display: grid; gap: 10px; margin-top: 24px; border: 0; }
  .nav .mobile-cta .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (min-width: 1081px) { .nav .mobile-cta { display: none; } }

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 88px) clamp(32px, 4vw, 56px); }
.hero + .section--tight, .page-hero + .section--tight { padding-top: 0; }
.page-hero:has(+ .section--tight) { padding-bottom: clamp(32px, 4vw, 56px); }
.section--tight:has(.stats) + .section { padding-top: clamp(48px, 6vw, 88px); }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 120%; z-index: -1;
  background:
    radial-gradient(40% 50% at 78% 30%, rgb(61 139 253 / 16%), transparent 70%),
    radial-gradient(45% 55% at 62% 55%, rgb(127 99 227 / 20%), transparent 70%),
    radial-gradient(35% 40% at 10% 10%, rgb(226 79 178 / 8%), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 75%);
}
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 560px; margin-bottom: 32px; }
.proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; font-size: .9375rem; color: var(--ink-2); }
.proof img { width: 150px; height: auto; }
.proof b { color: var(--ink); }

.hero-art { position: relative; margin-inline: auto; max-width: 560px; width: 100%; }
.hero-art .main { width: 100%; filter: drop-shadow(0 30px 40px rgb(52 32 150 / 18%)); }
.hero-art .float { position: absolute; filter: drop-shadow(0 16px 24px rgb(52 32 150 / 22%)); animation: float 7s ease-in-out infinite; }
.hero-art .float--circle { width: 24%; top: 4%; left: -2%; }
.hero-art .float--lower { width: 36%; bottom: 2%; right: -4%; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-12px); } }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(36px, 5vw, 64px) clamp(48px, 7vw, 88px); background: linear-gradient(180deg, var(--bg-2), #fff); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 85% 40%, rgb(127 99 227 / 16%), transparent 70%), radial-gradient(30% 50% at 60% 90%, rgb(61 139 253 / 10%), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero .split { grid-template-columns: 1fr; }
@media (min-width: 900px) { .page-hero .split { grid-template-columns: 1.1fr .9fr; } }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.page-hero .art { max-width: 460px; margin-inline: auto; filter: drop-shadow(0 26px 36px rgb(52 32 150 / 16%)); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 22px; font-size: .875rem; color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #c5c0dc; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 24px 22px; }
.stat b { display: block; font: 750 clamp(1.9rem, 3vw, 2.5rem)/1 var(--font-display); letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 8px; }
.stat span { font-size: .9375rem; color: var(--ink-2); }

/* Cards */
.card {
  position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
a.card { color: inherit; text-decoration: none; }
a.card:hover, .card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9d1fa; }
.card__media { background: var(--grad-soft); aspect-ratio: 16 / 11; display: grid; place-items: center; overflow: hidden; }
.card__media img { width: 72%; height: 92%; object-fit: contain; transition: transform .4s ease; }
.card__media--wide { aspect-ratio: 21 / 10; background: #fff; border-bottom: 1px solid var(--line); }
.card__media--wide img { width: 100%; height: 100%; object-fit: cover; }
a.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { font-size: .98rem; margin-bottom: 16px; }
.card__body .link-arrow { margin-top: auto; }

.card--big .card__media { aspect-ratio: 4 / 3; }
.card--big h3 { font-size: 1.5rem; }

.tile { display: flex; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d9d1fa; color: inherit; }
.tile__img { flex: none; width: 96px; height: 96px; border-radius: 16px; background: var(--grad-soft); display: grid; place-items: center; }
.tile__img img { width: 84px; height: 84px; object-fit: contain; }
.tile h3 { font-size: 1.0625rem; margin: 0 0 4px; }
.tile p { margin: 0; font-size: .9rem; color: var(--ink-3); line-height: 1.45; }
.tile--all { background: var(--night); border-color: var(--night); color: #fff; justify-content: space-between; padding-inline: 26px; }
.tile--all:hover { color: #fff; }
.tile--all h3 { color: #fff; }
.tile--all p { color: #b6b0d6; }
.tile--all svg { width: 28px; height: 28px; flex: none; }

.icon-card { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.icon-card img { flex: none; width: 56px; height: 63px; object-fit: contain; }
.icon-card h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.icon-card p { margin: 0; font-size: .95rem; }

.checklist, .is-style-check, .is-style-check-2 { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.checklist--2, .is-style-check-2 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 12px 24px; }
.checklist li, .is-style-check li, .is-style-check-2 li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 520; }
.checklist li::before, .is-style-check li::before, .is-style-check-2 li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235841e6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.chips, .is-style-chips, .is-style-chips-center { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 28px; }
.chips li, .is-style-chips li, .is-style-chips-center li { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .9375rem; font-weight: 550; color: var(--ink); }

/* Feature composition (shop section) */
.art-stack { position: relative; max-width: 560px; margin-inline: auto; }
.art-stack .drone { position: absolute; width: 26%; top: -8%; right: 6%; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 16px 20px rgb(21 17 47 / 16%)); }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { counter-increment: step; position: relative; padding: 24px 24px 24px 84px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; left: 24px; top: 22px; font: 750 1.4rem/1 var(--font-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.125rem; margin-bottom: 6px; }
.step p { margin: 0; }

/* FAQ / accordions */
.faq { display: grid; gap: 12px; }
.faq--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); align-items: start; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: #d6cdfa; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-weight: 620; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235841e6' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 20px 20px; }
.faq .faq__body > :last-child { margin-bottom: 0; }
.faq .faq__body ul { margin: 0 0 1em; }

/* Pricing */
.pricing { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); align-items: stretch; }
.price { position: relative; display: flex; flex-direction: column; padding: 30px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.price__tag { align-self: flex-start; padding: 5px 12px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-ink); font-size: .8125rem; font-weight: 650; margin-bottom: 18px; }
.price h3 { font-size: 1.375rem; margin-bottom: 4px; }
.price__amount { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 20px; color: var(--ink); }
.price__amount b { font: 750 3rem/1 var(--font-display); letter-spacing: -0.04em; }
.price__amount span { font-weight: 600; color: var(--ink-3); }
.price .checklist { margin-bottom: 28px; }
.price .btn { margin-top: auto; }
.price--featured { background: var(--night); border-color: var(--night); color: #cfc9ee; box-shadow: 0 30px 60px -30px rgb(40 22 140 / 60%); }
.price--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price--featured h3, .price--featured .price__amount { color: #fff; }
.price--featured .price__tag { background: var(--grad); color: #fff; }
.price--featured .checklist li { color: #fff; }
.price--featured .checklist li::before { background-color: rgb(255 255 255 / 12%); }
@media (min-width: 980px) { .price--featured { transform: translateY(-12px); } }

/* Quotes */
.quote { margin: 0; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.quote blockquote { margin: 0; color: var(--ink); font-size: 1.02rem; }
.quote blockquote::before { content: "\201E"; display: block; font: 800 3rem/0.6 Georgia, serif; color: var(--brand-2); margin-bottom: 8px; }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: .9375rem; }
.quote figcaption b { display: block; color: var(--ink); }
.quote .initials { flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 700; font-size: .95rem; }

/* Help box + CTA band */
.help { display: grid; grid-template-columns: 1fr; align-items: center; gap: 24px; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: var(--grad-soft); border: 1px solid var(--line); overflow: hidden; }
@media (min-width: 760px) { .help { grid-template-columns: 1.2fr .8fr; } }
.help h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.help img { max-width: 360px; margin-inline: auto; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px); background: var(--night); color: #cfc9ee; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 80% at 90% 10%, rgb(127 99 227 / 55%), transparent 70%), radial-gradient(40% 70% at 0% 100%, rgb(61 139 253 / 35%), transparent 70%); }
.cta-band > :not(.cta-band__art) { position: relative; max-width: 660px; }
.cta-band__art { position: absolute; right: -2%; bottom: 0; width: min(46%, 520px); pointer-events: none; }
@media (max-width: 859px) { .cta-band__art { display: none; } }
.cta-band h2 { color: #fff; max-width: 720px; }
.cta-band p { max-width: 640px; font-size: 1.125rem; margin-bottom: 30px; }
.on-dark a:not(.btn) { color: #fff; }

/* Contact */
.contact-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-list { display: grid; gap: 14px; align-content: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: inherit; text-decoration: none; }
a.contact-item:hover { border-color: #d6cdfa; box-shadow: var(--shadow-sm); color: inherit; }
.contact-item .ico { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item small { display: block; color: var(--ink-3); font-size: .8125rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.contact-item b { color: var(--ink); font-size: 1.0625rem; font-weight: 620; }
.form { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.fields { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); margin: 24px 0 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid #dcd7ee; background: var(--bg-2); color: var(--ink); font: inherit; transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgb(88 65 230 / 14%); }
.form .hp { position: absolute; left: -9999px; }
.form .consent { font-size: .875rem; color: var(--ink-3); margin-bottom: 20px; }
.notice { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 550; }
.notice--ok { background: #e7f7f0; color: #0d6b4a; }
.notice--err { background: #fdecef; color: #9b1c35; }
.map { position: relative; margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 5; min-height: 240px; background: var(--grad-soft); display: grid; place-items: center; text-align: center; padding: 24px; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Prose (legal pages) */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose li { margin-bottom: .35em; }

/* Footer */
.site-footer { position: relative; overflow: hidden; background: var(--night); color: #aea8cf; padding-top: clamp(56px, 8vw, 96px); font-size: .9688rem; isolation: isolate; }
.site-footer::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(40% 60% at 100% 0%, rgb(88 65 230 / 35%), transparent 70%), radial-gradient(30% 50% at 0% 100%, rgb(61 139 253 / 16%), transparent 70%); }
.site-footer a { color: #d9d4f5; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 48px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand small { color: #8f89b5; }
.site-footer h3 { color: #fff; font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgb(255 255 255 / 7%); border: 1px solid rgb(255 255 255 / 10%); }
.social a:hover { background: rgb(255 255 255 / 14%); }
.social svg { width: 20px; height: 20px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; height: 18px; margin-top: 4px; color: #9d8cff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgb(255 255 255 / 9%); font-size: .875rem; }
.footer-bottom ul { display: flex; gap: 20px; }

/* Floating WhatsApp */
.wa { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 12px 28px -10px rgb(0 0 0 / 45%); transition: transform .2s ease; }
.wa:hover { transform: scale(1.06); color: #fff; }
.wa svg { width: 28px; height: 28px; }

/* Reveal on scroll — CSS only, where supported */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
    @keyframes reveal { from { opacity: 0; transform: translateY(24px); } }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Adjacent tinted sections read as one block */
.section--tint + .section--tint { padding-top: 0; }
.price--featured a:not(.btn) { color: #fff; }
.price--featured p { color: #cfc9ee; }

/* Testimonials: a horizontal row that scrolls and snaps, no script needed */
.quotes {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(380px, 86%); gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 4px 4px 18px; margin-inline: -4px; scrollbar-width: thin; scrollbar-color: #cfc6f7 transparent;
}
.quotes .quote { scroll-snap-align: start; }
.quotes::-webkit-scrollbar { height: 8px; }
.quotes::-webkit-scrollbar-thumb { background: #d9d1fa; border-radius: 8px; }

/* Contact form: selects, choice pills, consent */
.field label b { color: var(--brand); font-weight: 700; }
.field label span { color: var(--ink-3); font-weight: 400; }
.field select {
  width: 100%; padding: 13px 40px 13px 14px; border-radius: 12px; border: 1px solid #dcd7ee; color: var(--ink); font: inherit; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2375718e' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 16px no-repeat;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.field select:focus { outline: none; border-color: var(--brand); background-color: #fff; box-shadow: 0 0 0 4px rgb(88 65 230 / 14%); }
.field select:invalid { color: var(--ink-3); }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
fieldset.field legend { font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; padding: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice span { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid #dcd7ee; background: var(--bg-2); font-size: .9375rem; font-weight: 550; color: var(--ink-2); transition: all .15s ease; }
.choice input:checked + span { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-ink); }
.choice input:focus-visible + span { box-shadow: 0 0 0 4px rgb(88 65 230 / 20%); }
.check { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 22px; font-size: .9rem; color: var(--ink-2); cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); }

/* AI Engine avatar images keep their shape at any size */
[class*="mwai"] img { object-fit: cover; }


/* Blocks: standard paragraphs and lists styled like the components above */
.is-style-chips-center { justify-content: center; }
.is-style-eyebrow { width: fit-content; }
.section-head--center .is-style-eyebrow, .has-text-align-center.is-style-eyebrow { margin-inline: auto; }
.grid { counter-reset: step; }
.page-hero .container:not(.split) .lead { max-width: 640px; }
.faq__body > :last-child, .zx-section-body > :last-child { margin-bottom: 0; }
