/* ==========================================================================
   JNV Creatives — Core Stylesheet
   Create. Connect. Grow.
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography
   4.  Layout utilities
   5.  Decorative elements (blobs, grids, glow)
   6.  Buttons
   7.  Header & navigation
   8.  Hero
   9.  Trust strip
   10. Cards & sections
   11. Dashboard / UI mockups
   12. Process timeline
   13. Portfolio
   14. Pricing
   15. FAQ accordion
   16. Blog
   17. Forms
   18. CTA band
   19. Footer
   20. Floating UI (WhatsApp, back to top)
   21. Motion & reveal
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette — premium light digital */
  --c-blue: #2563eb;
  --c-blue-dark: #1d4ed8;
  --c-blue-soft: #dbe7ff;
  --c-indigo: #4f46e5;
  --c-violet: #7c3aed;
  --c-cyan: #06b6d4;
  --c-sky: #38bdf8;

  /* Neutrals */
  --c-navy: #0b1437;
  --c-navy-2: #16205a;
  --c-body: #4a5578;
  --c-muted: #626c8c;
  --c-wa: #0f8272;
  --c-wa-dark: #0b6b5e;
  --c-line: #e6ebf7;
  --c-line-2: #eef2fb;
  --c-white: #ffffff;
  --c-off: #f7f9fe;
  --c-grey: #f1f5fd;

  /* Gradients */
  --g-brand: linear-gradient(120deg, #2563eb 0%, #4f46e5 48%, #7c3aed 100%);
  --g-brand-soft: linear-gradient(120deg, rgba(37, 99, 235, .12) 0%, rgba(124, 58, 237, .12) 100%);
  --g-cyan: linear-gradient(120deg, #06b6d4 0%, #2563eb 100%);
  --g-text: linear-gradient(96deg, #2563eb 0%, #4f46e5 40%, #7c3aed 92%);
  --g-mesh: radial-gradient(60% 60% at 15% 10%, rgba(37, 99, 235, .16) 0%, transparent 60%),
            radial-gradient(50% 50% at 85% 5%, rgba(124, 58, 237, .14) 0%, transparent 62%),
            radial-gradient(60% 60% at 70% 90%, rgba(6, 182, 212, .12) 0%, transparent 60%);

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(11, 20, 55, .05);
  --sh-sm: 0 2px 8px rgba(11, 20, 55, .05), 0 1px 2px rgba(11, 20, 55, .04);
  --sh-md: 0 12px 30px -12px rgba(11, 20, 55, .16), 0 4px 10px -4px rgba(11, 20, 55, .06);
  --sh-lg: 0 30px 60px -24px rgba(11, 20, 55, .22), 0 8px 20px -10px rgba(11, 20, 55, .08);
  --sh-xl: 0 46px 90px -30px rgba(24, 32, 84, .3);
  --sh-blue: 0 16px 34px -14px rgba(37, 99, 235, .5);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --f-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --gutter: 24px;
  --sec-y: 108px;
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .22s var(--ease);
  --t-base: .38s var(--ease);
  --t-slow: .7s var(--ease-out);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--c-body);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--c-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-violet); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 40px 0; }

::selection { background: rgba(79, 70, 229, .16); color: var(--c-navy); }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .55);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--c-navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-xs);
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 16px; color: #fff; }

.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;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  color: var(--c-navy);
  margin: 0 0 .55em;
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.08;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.35rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.1rem); line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.6rem); line-height: 1.22; letter-spacing: -.02em; }
h4 { font-size: 1.14rem; line-height: 1.35; letter-spacing: -.015em; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

strong, b { color: var(--c-navy-2); font-weight: 700; }

.display {
  font-size: clamp(2.35rem, 4.3vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.038em;
}

.grad-text {
  background: var(--g-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
  line-height: 1.75;
  color: var(--c-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-head);
  font-size: .745rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-indigo);
  background: linear-gradient(120deg, rgba(37, 99, 235, .09), rgba(124, 58, 237, .09));
  border: 1px solid rgba(79, 70, 229, .16);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--g-brand);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .12);
  flex: none;
}
.eyebrow--plain { background: none; border: 0; padding: 0; }

.stack-head {
  font-size: clamp(1.85rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { position: relative; padding-block: var(--sec-y); }
.section--tight { padding-block: 72px; }
.section--soft { background: var(--c-off); }
.section--grey { background: var(--c-grey); }
.section--mesh { background: var(--c-off); }
.section--mesh::before {
  content: ""; position: absolute; inset: 0; background: var(--g-mesh);
  pointer-events: none;
}
.section > .wrap { position: relative; z-index: 2; }

.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head h2, .sec-head p, .lead { text-wrap: pretty; }
.sec-head--center h2, .empty-state h3, .empty-state p { text-wrap: balance; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-bottom: .38em; }
.sec-head p { color: var(--c-muted); font-size: 1.06rem; }

.sec-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.sec-head-row .sec-head { margin-bottom: 0; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.05fr .95fr; }
.split--wide-right { grid-template-columns: .92fr 1.08fr; }
.split--top { align-items: flex-start; }

.divider-line { height: 1px; background: linear-gradient(90deg, transparent, var(--c-line), transparent); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }

/* ==========================================================================
   5. DECORATIVE ELEMENTS
   ========================================================================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.blob--a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(37, 99, 235, .45), transparent 68%); }
.blob--b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(124, 58, 237, .38), transparent 68%); }
.blob--c { width: 380px; height: 380px; background: radial-gradient(circle, rgba(6, 182, 212, .34), transparent 68%); }
.blob--drift { animation: drift 22s var(--ease) infinite alternate; }
.blob--drift-2 { animation: drift2 26s var(--ease) infinite alternate; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -34px, 0) scale(1.1); }
}
@keyframes drift2 {
  from { transform: translate3d(0, 0, 0) scale(1.06); }
  to { transform: translate3d(-46px, 30px, 0) scale(1); }
}

.grid-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(11, 20, 55, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 20, 55, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 78%);
}

.dot-pattern {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(37, 99, 235, .18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
  mask-image: linear-gradient(180deg, #000, transparent);
}

.glow-line {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, .5), transparent);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  overflow: hidden;
  isolation: isolate;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--g-brand);
  background-size: 160% 100%;
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn--primary:hover { background-position: 100% 0; color: #fff; box-shadow: 0 20px 40px -14px rgba(79, 70, 229, .62); }

.btn--ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--c-navy);
  border-color: var(--c-line);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(79, 70, 229, .38); color: var(--c-indigo); box-shadow: var(--sh-md); }

.btn--dark { background: var(--c-navy); color: #fff; }
.btn--dark:hover { background: var(--c-navy-2); color: #fff; }

.btn--white { background: #fff; color: var(--c-navy); box-shadow: var(--sh-md); }
.btn--white:hover { color: var(--c-indigo); }

.btn--outline-white { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn--outline-white:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.btn--wa { background: var(--c-wa); color: #fff; box-shadow: 0 14px 30px -14px rgba(15, 130, 114, .65); }
.btn--wa:hover { background: var(--c-wa-dark); color: #fff; }

.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--sm { padding: 11px 20px; font-size: .875rem; }
.btn--block { width: 100%; }

.btn--magnetic { will-change: transform; }

.btn.is-loading { pointer-events: none; opacity: .82; }
.btn__label { display: inline-flex; align-items: center; gap: 9px; }
.btn.is-loading .btn__label { opacity: .35; }
.btn.is-loading::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  width: 19px; height: 19px;
  border: 2.5px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn--ghost.is-loading::after { border-color: rgba(11, 20, 55, .2); border-top-color: var(--c-navy); }
@keyframes spin { to { transform: rotate(360deg); } }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head); font-weight: 700; font-size: .95rem;
  color: var(--c-indigo);
}
.link-arrow svg { transition: transform var(--t-fast); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base), height var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: var(--c-line);
  box-shadow: 0 10px 30px -18px rgba(11, 20, 55, .28);
  height: 68px;
}
body { padding-top: var(--header-h); }

.header-inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 30px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--f-head); font-weight: 800; font-size: 1.16rem;
  letter-spacing: -.032em; color: var(--c-navy);
}
.logo__tag {
  font-size: .565rem; letter-spacing: .21em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 600; margin-top: 4px;
}

/* Desktop nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 600; font-size: .935rem;
  color: var(--c-navy-2);
  padding: 10px 15px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--c-indigo); background: rgba(79, 70, 229, .06); }
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--g-brand);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.nav__item.is-active > .nav__link { color: var(--c-indigo); }
.nav__item.is-active > .nav__link::after { transform: scaleX(1); }
.nav__caret { transition: transform var(--t-fast); }
.nav__item--has-menu:hover .nav__caret { transform: rotate(180deg); }

/* Services dropdown */
.nav__item--has-menu { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: 620px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.nav__item--has-menu:hover .mega,
.nav__item--has-menu:focus-within .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega::before {
  content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: #fff; border-left: 1px solid var(--c-line); border-top: 1px solid var(--c-line);
  border-radius: 3px 0 0 0;
}
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega__link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 13px; border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mega__link:hover { background: var(--c-off); }
.mega__ico {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--g-brand-soft);
  color: var(--c-indigo);
}
.mega__ico svg { width: 18px; height: 18px; }
.mega__title { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--c-navy); line-height: 1.3; }
.mega__desc { font-size: .78rem; color: var(--c-muted); line-height: 1.45; margin-top: 2px; }
.mega__foot {
  margin-top: 14px; padding-top: 15px; border-top: 1px solid var(--c-line-2);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mega__foot span { font-size: .84rem; color: var(--c-muted); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

/* Hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  border: 1px solid var(--c-line);
  background: #fff;
  place-items: center;
  flex: none;
  margin-left: auto;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: var(--c-navy);
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 190;
  background: #fff;
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-base), visibility var(--t-base);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
body.nav-open { overflow: hidden; }

.mnav__list { display: flex; flex-direction: column; }
.mnav__link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-head); font-weight: 700; font-size: 1.22rem;
  color: var(--c-navy);
  padding: 15px 0;
  border-bottom: 1px solid var(--c-line-2);
}
.mnav__item.is-active > .mnav__link { color: var(--c-indigo); }
.mnav__toggle svg { transition: transform var(--t-base); }
.mnav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mnav__sub {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-base);
}
.mnav__sub ul { padding: 6px 0 12px; }
.mnav__sub a {
  display: block; padding: 10px 0 10px 16px;
  border-left: 2px solid var(--c-line);
  font-size: .97rem; font-weight: 500; color: var(--c-body);
}
.mnav__sub a:hover { color: var(--c-indigo); border-left-color: var(--c-indigo); }
.mnav__foot { margin-top: 30px; display: grid; gap: 12px; }
.mnav__contact {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--c-line-2);
  display: grid; gap: 10px; font-size: .93rem;
}
.mnav__contact a { color: var(--c-body); display: flex; align-items: center; gap: 10px; }
.mnav__contact svg { color: var(--c-indigo); flex: none; }

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-block: 78px 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 62%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero .wrap { position: relative; z-index: 3; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  gap: 52px;
  align-items: center;
}

.hero h1 { margin-bottom: 26px; }
.hero__lead { max-width: 540px; font-size: clamp(1.02rem, 1.3vw, 1.14rem); color: var(--c-muted); margin-bottom: 34px; }

.hero__meta {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--c-line);
  display: flex; flex-wrap: wrap; gap: 12px 30px;
}
.hero__meta li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; font-weight: 600; color: var(--c-navy-2);
  font-family: var(--f-head);
}
.hero__meta svg { color: var(--c-blue); flex: none; }

/* Layered visual */
.hero__visual { position: relative; }
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1.04;
  max-width: 540px;
  margin-inline: auto;
}
.hero__photo {
  position: absolute;
  inset: 6% 8% 8% 6%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: var(--c-grey);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(37, 99, 235, .1), transparent 46%, rgba(11, 20, 55, .3));
}
.hero__ring {
  position: absolute; inset: 0;
  border-radius: 44px;
  background: var(--g-brand);
  opacity: .1;
  transform: rotate(-5deg);
}

.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--sh-lg);
  border-radius: var(--r-md);
  padding: 14px 16px;
  min-width: 168px;
}
.float-card__label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .045em; text-transform: uppercase; color: var(--c-muted);
  margin-bottom: 10px;
}
.float-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--g-brand); flex: none; }
.float-card__val { font-family: var(--f-head); font-weight: 800; color: var(--c-navy); font-size: .98rem; letter-spacing: -.02em; }
.float-card svg { display: block; }

.float-card--1 { top: 4%; left: -6%; animation: float1 7s ease-in-out infinite; }
.float-card--2 { top: 30%; right: -8%; animation: float2 8.5s ease-in-out infinite; }
.float-card--3 { bottom: 16%; left: -9%; animation: float2 9.5s ease-in-out infinite; }
.float-card--4 { bottom: 1%; right: -2%; animation: float1 8s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-block: 84px 74px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--c-line-2);
}
.page-hero__inner { position: relative; z-index: 3; max-width: 820px; }
.page-hero--center .page-hero__inner { margin-inline: auto; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.75rem); margin-bottom: 22px; }
.page-hero .lead { max-width: 640px; }
.page-hero--center .lead { margin-inline: auto; }
.page-hero__split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; z-index: 3; }
.page-hero__split .page-hero__inner { max-width: none; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .82rem; color: var(--c-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--c-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--c-indigo); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: #b9c3dc; }
.breadcrumb [aria-current] { color: var(--c-navy-2); font-weight: 600; }
.page-hero--center .breadcrumb { justify-content: center; }

/* ==========================================================================
   9. TRUST STRIP
   ========================================================================== */
.trust {
  padding-block: 54px;
  border-block: 1px solid var(--c-line-2);
  background: var(--c-off);
}
.trust__title {
  text-align: center; font-family: var(--f-head); font-weight: 700;
  color: var(--c-navy); font-size: 1.02rem; margin-bottom: 30px;
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.trust__pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--c-navy-2);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.trust__pill:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(79, 70, 229, .3); }
.trust__pill svg { color: var(--c-indigo); flex: none; }

/* ==========================================================================
   10. CARDS & SECTIONS
   ========================================================================== */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(79, 70, 229, .22); }

.card__ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--g-brand-soft);
  color: var(--c-indigo);
  margin-bottom: 20px;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.card__ico svg { width: 24px; height: 24px; }
.card:hover .card__ico { background: var(--g-brand); color: #fff; transform: scale(1.06) rotate(-4deg); }

.card h3 { font-size: 1.22rem; margin-bottom: .5em; }
.card p { font-size: .945rem; color: var(--c-muted); margin-bottom: 0; }

/* Service card (home + services page) */
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  color: inherit;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(37, 99, 235, .07), rgba(124, 58, 237, .05) 55%, transparent 72%);
  opacity: 0; transition: opacity var(--t-base);
}
.svc-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--g-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(79, 70, 229, .24); color: inherit; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card > * { position: relative; z-index: 2; }

.svc-card__ico {
  width: 56px; height: 56px; border-radius: 17px;
  display: grid; place-items: center;
  background: var(--g-brand-soft);
  color: var(--c-indigo);
  margin-bottom: 22px;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
}
.svc-card__ico svg { width: 25px; height: 25px; }
.svc-card:hover .svc-card__ico { background: var(--g-brand); color: #fff; transform: translateY(-2px) rotate(-5deg); }

.svc-card h3 { font-size: 1.2rem; margin-bottom: .48em; }
.svc-card p { font-size: .93rem; color: var(--c-muted); margin-bottom: 22px; }
.svc-card__arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: .875rem;
  color: var(--c-indigo);
}
.svc-card__arrow svg { transition: transform var(--t-fast); }
.svc-card:hover .svc-card__arrow svg { transform: translateX(6px); }

/* Numbered feature list */
.num-list { display: grid; gap: 18px; }
.num-item {
  display: flex; gap: 20px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.num-item:hover { transform: translateX(6px); box-shadow: var(--sh-md); border-color: rgba(79, 70, 229, .25); }
.num-item__n {
  font-family: var(--f-head); font-weight: 800; font-size: .95rem;
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--g-brand-soft);
  color: var(--c-indigo);
}
.num-item h3 { font-size: 1.08rem; margin-bottom: .3em; }
.num-item p { font-size: .91rem; color: var(--c-muted); margin: 0; }

/* Check list */
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.check-list svg { flex: none; margin-top: 4px; color: var(--c-blue); }

/* Pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li {
  padding: 9px 17px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--c-line);
  font-size: .875rem; font-weight: 600; font-family: var(--f-head); color: var(--c-navy-2);
}

/* Media frame */
.media-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--c-grey);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame__badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 9px 17px;
  font-family: var(--f-head); font-weight: 700; font-size: .8rem; color: var(--c-navy);
  display: flex; align-items: center; gap: 9px;
}
.media-stack { position: relative; }
.media-stack__accent {
  position: absolute; inset: -18px -18px auto auto;
  width: 150px; height: 150px; border-radius: var(--r-lg);
  background: var(--g-brand); opacity: .12; z-index: -1;
}

/* Why-us animated cards */
.why-card {
  position: relative;
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 26px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.why-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--g-brand); transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-base);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(79, 70, 229, .24); }
.why-card:hover::after { transform: scaleY(1); }
.why-card__ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--g-brand-soft); color: var(--c-indigo);
  transition: background var(--t-base), color var(--t-base);
}
.why-card:hover .why-card__ico { background: var(--g-brand); color: #fff; }
.why-card h3 { font-size: 1.06rem; margin-bottom: .28em; }
.why-card p { font-size: .9rem; color: var(--c-muted); margin: 0; }

/* Stat-free info tiles */
.info-tile {
  padding: 26px 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
}
.info-tile__k {
  font-family: var(--f-head); font-weight: 800; font-size: 1.02rem;
  color: var(--c-navy); margin: 0 0 6px; letter-spacing: -.02em; line-height: 1.35;
}
.info-tile p { font-size: .89rem; color: var(--c-muted); margin: 0; }

/* Empty state (testimonials) */
.empty-state {
  position: relative;
  text-align: center;
  padding: 66px 40px;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px dashed rgba(79, 70, 229, .3);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.empty-state__ico {
  width: 72px; height: 72px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 24px;
  background: var(--g-brand-soft); color: var(--c-indigo);
}
.empty-state h3 { font-size: 1.55rem; }
.empty-state p { max-width: 520px; margin-inline: auto; color: var(--c-muted); }

.quote-ghost {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.quote-ghost__item {
  background: var(--c-off); border: 1px solid var(--c-line-2);
  border-radius: var(--r-md); padding: 22px; text-align: left;
}
.quote-ghost__bar { height: 9px; border-radius: 6px; background: var(--c-line); margin-bottom: 11px; }
.quote-ghost__bar--s { width: 62%; }
.quote-ghost__bar--m { width: 84%; }
.quote-ghost__av { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.quote-ghost__circ { width: 34px; height: 34px; border-radius: 50%; background: var(--c-line); flex: none; }

/* ==========================================================================
   11. DASHBOARD / UI MOCKUPS
   ========================================================================== */
.mock {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mock__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-line-2);
  background: var(--c-off);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f5; }
.mock__dot:nth-child(1) { background: #ffd0cd; }
.mock__dot:nth-child(2) { background: #ffe8bf; }
.mock__dot:nth-child(3) { background: #cdefd9; }
.mock__url {
  margin-left: 10px; flex: 1;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 5px 14px; font-size: .72rem; color: var(--c-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock__body { padding: 22px; }

.dash {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.dash__tile {
  background: var(--c-off);
  border: 1px solid var(--c-line-2);
  border-radius: var(--r-sm);
  padding: 15px;
}
.dash__tile--wide { grid-column: span 3; }
.dash__tile--two { grid-column: span 2; }
.dash__label {
  font-family: var(--f-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--c-muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 7px;
}
.dash__label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--g-brand); }

.bars { display: flex; align-items: flex-end; gap: 7px; height: 78px; }
.bars span {
  flex: 1; border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--c-blue), rgba(79, 70, 229, .35));
  transform-origin: bottom;
  animation: barGrow 1.4s var(--ease-out) backwards;
}
@keyframes barGrow { from { transform: scaleY(.05); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.spark { width: 100%; height: 62px; }
.spark path.line {
  fill: none; stroke: url(#sparkGrad); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: draw 2.2s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.ring { width: 84px; height: 84px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.ring .track { stroke: var(--c-line); }
.ring .prog {
  stroke: url(#ringGrad);
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: ringFill 1.8s var(--ease-out) forwards;
}
@keyframes ringFill { to { stroke-dashoffset: 62; } }

.legend { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 12px; }
.legend li { display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--c-muted); font-weight: 600; }
.legend i { width: 9px; height: 9px; border-radius: 3px; display: block; }

/* Phone / social mockup */
.phone {
  width: 100%; max-width: 290px;
  border-radius: 34px;
  background: #fff;
  border: 8px solid #0b1437;
  box-shadow: var(--sh-xl);
  overflow: hidden;
  margin-inline: auto;
}
.phone__notch { height: 22px; background: #0b1437; position: relative; }
.phone__notch::after {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 96px; height: 16px; background: #0b1437; border-radius: 0 0 14px 14px;
}
.phone__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-bottom: 1px solid var(--c-line-2);
  font-family: var(--f-head); font-weight: 700; font-size: .85rem; color: var(--c-navy);
}
.phone__post img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.phone__acts { display: flex; gap: 14px; padding: 12px 14px 6px; color: var(--c-navy); }
.phone__cap { padding: 0 14px 16px; font-size: .78rem; color: var(--c-muted); line-height: 1.55; }
.phone__cap b { color: var(--c-navy); }

/* Ad preview card */
.ad-mock {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-md);
}
.ad-mock__head { display: flex; align-items: center; gap: 11px; padding: 14px; }
.ad-mock__av { width: 38px; height: 38px; border-radius: 50%; background: var(--g-brand); flex: none; display: grid; place-items: center; color: #fff; font-family: var(--f-head); font-weight: 800; font-size: .82rem; }
.ad-mock__name { font-family: var(--f-head); font-weight: 700; font-size: .87rem; color: var(--c-navy); line-height: 1.2; }
.ad-mock__meta { font-size: .72rem; color: var(--c-muted); display: flex; align-items: center; gap: 5px; }
.ad-mock__copy { padding: 0 14px 12px; font-size: .85rem; color: var(--c-body); }
.ad-mock__img { aspect-ratio: 16/9; overflow: hidden; background: var(--c-grey); }
.ad-mock__img img { width: 100%; height: 100%; object-fit: cover; }
.ad-mock__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 14px; background: var(--c-off); border-top: 1px solid var(--c-line-2);
  font-size: .8rem; color: var(--c-muted);
}
.ad-mock__btn {
  background: var(--c-navy); color: #fff; border-radius: 8px;
  padding: 7px 14px; font-family: var(--f-head); font-weight: 700; font-size: .76rem;
}

/* SERP mockup */
.serp { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 20px; box-shadow: var(--sh-md); }
.serp__search {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--c-line); border-radius: var(--r-pill);
  padding: 10px 16px; margin-bottom: 18px; color: var(--c-muted); font-size: .85rem;
}
.serp__item { padding: 12px 0; border-bottom: 1px solid var(--c-line-2); }
.serp__item:last-child { border-bottom: 0; }
.serp__tag {
  display: inline-block; font-size: .64rem; font-weight: 800; letter-spacing: .08em;
  border: 1px solid var(--c-line); border-radius: 4px; padding: 1px 5px;
  color: var(--c-navy); margin-right: 7px;
}
.serp__url { font-size: .74rem; color: var(--c-muted); }
.serp__title { font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: #1a56db; margin: 3px 0 4px; }
.serp__desc { font-size: .8rem; color: var(--c-muted); line-height: 1.5; margin: 0; }

/* Network / node graphic */
.node-graphic { width: 100%; height: auto; }
.node-graphic .pulse { animation: pulseNode 3s ease-in-out infinite; transform-origin: center; }
.node-graphic .pulse:nth-child(2n) { animation-delay: .6s; }
.node-graphic .pulse:nth-child(3n) { animation-delay: 1.2s; }
@keyframes pulseNode { 0%, 100% { opacity: .35; r: 4; } 50% { opacity: 1; r: 6; } }
.node-graphic .link { stroke-dasharray: 6 8; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -200; } }

/* ==========================================================================
   12. PROCESS TIMELINE
   ========================================================================== */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 20px; bottom: 20px; width: 2px;
  background: linear-gradient(180deg, var(--c-blue), var(--c-violet));
  opacity: .22;
}
.tl-item { position: relative; display: grid; grid-template-columns: 76px 1fr; gap: 8px; padding-block: 18px; }
.tl-item__num {
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  background: #fff; border: 1px solid var(--c-line);
  color: var(--c-indigo);
  box-shadow: var(--sh-sm);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.tl-item:hover .tl-item__num { background: var(--g-brand); color: #fff; transform: scale(1.06); border-color: transparent; }
.tl-item__body {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 22px 26px; box-shadow: var(--sh-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.tl-item:hover .tl-item__body { transform: translateX(6px); box-shadow: var(--sh-md); border-color: rgba(79, 70, 229, .22); }
.tl-item h3 { font-size: 1.16rem; margin-bottom: .32em; }
.tl-item p { font-size: .93rem; color: var(--c-muted); margin: 0; }

/* Horizontal steps (home) */
.steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 27px; height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-indigo), var(--c-violet));
  opacity: .2;
}
.step { position: relative; text-align: center; }
.step__dot {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 18px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
  font-family: var(--f-head); font-weight: 800; font-size: .95rem; color: var(--c-indigo);
  position: relative; z-index: 2;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.step:hover .step__dot { background: var(--g-brand); color: #fff; transform: translateY(-5px); border-color: transparent; }
.step h3 { font-size: 1.02rem; margin-bottom: .3em; }
.step p { font-size: .845rem; color: var(--c-muted); margin: 0; }

/* ==========================================================================
   13. PORTFOLIO
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--f-head); font-weight: 600; font-size: .875rem;
  padding: 10px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--c-line); background: #fff; color: var(--c-navy-2);
  transition: all var(--t-fast);
}
.filter-btn:hover { border-color: rgba(79, 70, 229, .4); color: var(--c-indigo); }
.filter-btn.is-active { background: var(--g-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-blue); }

.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pf-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base), border-color var(--t-base);
}
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(79, 70, 229, .22); }
.pf-card.is-hidden { display: none; }
.pf-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--c-grey); }
.pf-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.pf-card:hover .pf-card__media img { transform: scale(1.07); }
.pf-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 20, 55, .5));
  opacity: .8;
}
.pf-card__cat {
  position: absolute; z-index: 2; left: 14px; top: 14px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  border-radius: var(--r-pill); padding: 6px 14px;
  font-family: var(--f-head); font-weight: 700; font-size: .72rem; color: var(--c-navy);
  letter-spacing: .02em;
}
.pf-card__note {
  position: absolute; z-index: 2; right: 14px; top: 14px;
  background: rgba(11, 20, 55, .72); backdrop-filter: blur(8px);
  border-radius: var(--r-pill); padding: 6px 12px;
  font-family: var(--f-head); font-weight: 700; font-size: .66rem; color: #fff;
  letter-spacing: .05em; text-transform: uppercase;
}
.pf-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pf-card h3 { font-size: 1.13rem; margin-bottom: .4em; }
.pf-card p { font-size: .9rem; color: var(--c-muted); margin-bottom: 20px; }
.pf-card__link { margin-top: auto; }
.pf-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--c-muted);
}

/* Detail panel */
.pf-detail {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(11, 20, 55, .5);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.pf-detail.is-open { opacity: 1; visibility: visible; }
.pf-detail__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 86vh; overflow-y: auto;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transform: translateY(20px) scale(.98);
  transition: transform var(--t-base);
}
.pf-detail.is-open .pf-detail__panel { transform: none; }
.pf-detail__media { aspect-ratio: 16/9; overflow: hidden; background: var(--c-grey); border-radius: var(--r-xl) var(--r-xl) 0 0; }
.pf-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.pf-detail__body { padding: 32px; }
.pf-detail__close {
  position: absolute; right: 16px; top: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); color: var(--c-navy);
  display: grid; place-items: center; box-shadow: var(--sh-md);
}
.pf-detail__close:hover { background: #fff; color: var(--c-indigo); }

/* ==========================================================================
   14. PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 36px 32px 34px;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card--featured {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--g-brand) border-box;
  border: 2px solid transparent;
}
.price-card--featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(37, 99, 235, .06), transparent 55%);
  pointer-events: none;
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--g-brand); color: #fff;
  font-family: var(--f-head); font-weight: 800; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: var(--r-pill);
  box-shadow: var(--sh-blue); white-space: nowrap;
}
.price-card__name {
  font-family: var(--f-head); font-weight: 800; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--c-indigo);
  margin-bottom: 14px;
}
.price-card__amt {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--f-head); font-weight: 800; color: var(--c-navy);
  font-size: 2.85rem; letter-spacing: -.04em; line-height: 1;
}
.price-card__per { font-size: .92rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0; }
.price-card__desc { font-size: .9rem; color: var(--c-muted); margin: 14px 0 24px; }
.price-card ul { display: grid; gap: 12px; margin-bottom: 30px; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; }
.price-card li svg { flex: none; margin-top: 4px; color: var(--c-blue); }
.price-card .btn { margin-top: auto; }
.price-note {
  margin-top: 34px; padding: 18px 24px;
  background: var(--c-off); border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex; gap: 13px; align-items: flex-start;
  font-size: .89rem; color: var(--c-muted);
}
.price-note svg { flex: none; margin-top: 3px; color: var(--c-indigo); }

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq-item.is-open { border-color: rgba(79, 70, 229, .3); box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-family: var(--f-head); font-weight: 700; font-size: 1.03rem; color: var(--c-navy);
}
.faq-q:hover { color: var(--c-indigo); }
.faq-ico {
  width: 32px; height: 32px; flex: none; border-radius: 50%;
  background: var(--g-brand-soft); color: var(--c-indigo);
  display: grid; place-items: center;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.faq-item.is-open .faq-ico { transform: rotate(45deg); background: var(--g-brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-base); }
.faq-a__inner { padding: 0 26px 24px; color: var(--c-muted); font-size: .96rem; }

/* ==========================================================================
   16. BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(79, 70, 229, .22); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--c-grey); position: relative; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.tag {
  font-family: var(--f-head); font-weight: 700; font-size: .7rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--g-brand-soft); color: var(--c-indigo);
}
.tag--demo { background: #fff5e6; color: #b45309; border: 1px solid #fde3bd; }
.post-card h3 { font-size: 1.1rem; margin-bottom: .42em; }
.post-card p { font-size: .9rem; color: var(--c-muted); margin-bottom: 18px; }
.post-card__foot { margin-top: auto; font-size: .8rem; color: var(--c-muted); display: flex; align-items: center; gap: 8px; }

.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; border-radius: var(--r-md);
  background: #fffbf2; border: 1px solid #fde3bd;
  color: #92600b; font-size: .92rem; margin-bottom: 40px;
}
.notice svg { flex: none; margin-top: 3px; }
.notice strong { color: #7c4a05; }

/* ==========================================================================
   17. FORMS
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: 38px;
  box-shadow: var(--sh-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-head); font-weight: 700; font-size: .84rem; color: var(--c-navy);
}
.field label .req { color: #e11d48; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-off);
  padding: 14px 16px;
  font-size: .95rem;
  color: var(--c-navy);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #868fad; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: rgba(79, 70, 229, .55);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .1);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23626c8c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #f43f5e; background: #fff5f7; }
.field__err { font-size: .78rem; color: #e11d48; display: none; }
.field.has-error .field__err { display: block; }
.form-consent { display: flex; flex-direction: row; gap: 11px; align-items: flex-start; font-size: .84rem; color: var(--c-muted); grid-column: 1/-1; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--c-indigo); }
.form-msg {
  grid-column: 1/-1; padding: 14px 18px; border-radius: var(--r-sm);
  font-size: .9rem; display: none;
}
.form-msg.is-ok { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-msg.is-err { display: block; background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

/* Contact cards */
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--c-line);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(79, 70, 229, .24); }
.contact-card__ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px;
  background: var(--g-brand-soft); color: var(--c-indigo);
  display: grid; place-items: center;
}
.contact-card__k { font-family: var(--f-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 5px; }
.contact-card__v { font-family: var(--f-head); font-weight: 700; color: var(--c-navy); font-size: 1.02rem; letter-spacing: -.02em; }
.contact-card a.contact-card__v:hover { color: var(--c-indigo); }

/* ==========================================================================
   18. CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #101a4d 0%, #1e2a75 42%, #4c2f9e 100%);
  color: #fff;
  padding-block: 96px;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 12% 20%, rgba(56, 189, 248, .3), transparent 62%),
    radial-gradient(50% 60% at 88% 80%, rgba(168, 85, 247, .35), transparent 62%);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 75%);
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 75%);
}
.cta-band .wrap { position: relative; z-index: 3; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.5rem); text-transform: uppercase; letter-spacing: -.035em; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 600px; margin-inline: auto; font-size: 1.06rem; }
.cta-band .btn-row { justify-content: center; margin-top: 36px; }
.cta-band__eyebrow {
  background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); color: #c7d2fe;
}
.cta-band__contact {
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 44px;
}
.cta-band__contact a, .cta-band__contact span {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, .84); font-size: .93rem; font-weight: 500;
}
.cta-band__contact a:hover { color: #fff; }

/* ==========================================================================
   19. FOOTER
   ========================================================================== */
.site-footer {
  background: #0b1437;
  color: rgba(255, 255, 255, .7);
  padding-block: 76px 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 0%, rgba(79, 70, 229, .3), transparent 60%);
}
.site-footer .wrap { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo__name { color: #fff; }
.footer-brand .logo__tag { color: rgba(255, 255, 255, .5); }
.footer-brand p { margin-top: 20px; font-size: .93rem; color: rgba(255, 255, 255, .6); max-width: 320px; }
.footer-tagline {
  display: inline-block; margin-top: 18px;
  font-family: var(--f-head); font-weight: 800; font-size: 1.02rem;
  letter-spacing: .04em;
  background: linear-gradient(96deg, #60a5fa, #a78bfa, #22d3ee);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-col h2 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px; font-weight: 800; line-height: 1.4;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(255, 255, 255, .66); font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; color: rgba(255, 255, 255, .66); }
.footer-contact svg { flex: none; margin-top: 4px; color: #818cf8; }
.footer-social { display: flex; gap: 10px; margin-top: 26px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { background: var(--g-brand); color: #fff; transform: translateY(-3px); border-color: transparent; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .86rem; color: rgba(255, 255, 255, .5);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a { color: rgba(255, 255, 255, .6); }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   20. FLOATING UI
   ========================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--c-wa); color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-head); font-weight: 700; font-size: .92rem;
  box-shadow: 0 16px 34px -12px rgba(15, 130, 114, .6);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover { transform: translateY(-3px); color: #fff; background: var(--c-wa-dark); box-shadow: 0 22px 42px -14px rgba(15, 130, 114, .7); }
.wa-float svg { flex: none; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid rgba(15, 130, 114, .5);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.14); opacity: 0; }
  100% { opacity: 0; }
}

.to-top {
  position: fixed; right: 24px; bottom: 92px; z-index: 149;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--c-navy);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-md);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base), color var(--t-fast);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--c-indigo); }

/* Mobile sticky action bar */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 160;
  display: none;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 26px -18px rgba(11, 20, 55, .4);
}
.sticky-bar .btn { flex: 1; padding: 13px 12px; font-size: .88rem; }

/* Page loading bar */
.page-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--g-brand); z-index: 300;
  transition: width .25s ease-out, opacity .4s ease;
}

/* ==========================================================================
   21. MOTION & REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(.95); }
.reveal--left.is-in, .reveal--right.is-in, .reveal--scale.is-in { transform: none; }

[data-stagger] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-stagger].is-in > * { opacity: 1; transform: none; }

.page-enter { animation: pageIn .6s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .float-card, .blob--drift, .blob--drift-2 { animation: none !important; }
}
