/* =====================================================================
   WEBFUSION — Premium Agency Design System
   style.css  |  Core styles, layout, components
   Fonts: Sora (headings) · Plus Jakarta Sans (body)
   ===================================================================== */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
--------------------------------------------------------------- */
:root {
  /* Brand */
  --navy:        #081635;
  --navy-2:      #0a1a42;
  --royal:       #4128F7;
  --purple:      #7E27F6;
  --white:       #FFFFFF;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #4128F7 0%, #7E27F6 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(65,40,247,.14), rgba(126,39,246,.14));
  --grad-hero:   radial-gradient(1200px 700px at 80% -10%, rgba(126,39,246,.28), transparent 60%),
                 radial-gradient(1000px 600px at 0% 10%, rgba(65,40,247,.30), transparent 55%),
                 linear-gradient(180deg, #081635 0%, #0a1030 55%, #060d24 100%);

  /* Neutrals */
  --ink:         #0b1220;
  --slate-900:   #101828;
  --slate-700:   #344054;
  --slate-500:   #667085;
  --slate-400:   #98a2b3;
  --slate-200:   #e4e7ec;
  --slate-100:   #f2f4f7;
  --bg-soft:     #f7f8fc;
  --line:        rgba(16,24,40,.08);

  /* Dark surface text */
  --on-dark:     #eef1ff;
  --on-dark-mut: #a9b2d6;

  /* Effects */
  --shadow-sm:   0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.10);
  --shadow-md:   0 8px 24px rgba(16,24,40,.10);
  --shadow-lg:   0 24px 60px -12px rgba(16,24,40,.18);
  --shadow-brand:0 18px 40px -12px rgba(65,40,247,.45);
  --glow:        0 0 0 1px rgba(126,39,246,.35), 0 12px 40px -8px rgba(65,40,247,.55);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Type */
  --f-head: 'Sora', system-ui, sans-serif;
  --f-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
  --nav-gap: 18px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--f-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: rgba(126,39,246,.25); }

h1,h2,h3,h4,h5 { font-family: var(--f-head); color: var(--slate-900); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }

/* ---------------------------------------------------------------
   3. LAYOUT HELPERS
--------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-wide { max-width: 1360px; }
.section { padding: 78px 0; position: relative; }
.section-sm { padding: 56px 0; }
.dark-section { background: var(--navy); color: var(--on-dark); }
.soft-section { background: var(--bg-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.reveal-max { max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  color: var(--royal);
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--grad-brand-soft);
  border: 1px solid rgba(65,40,247,.18);
  margin-bottom: 18px;
}
.dark-section .eyebrow, .hero .eyebrow {
  color: #c9c2ff; background: rgba(126,39,246,.12); border-color: rgba(126,39,246,.28);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad-brand); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 20px 0 16px; }
.section-sub { font-size: 1.075rem; color: var(--slate-500); }
.dark-section .section-title { color: #fff; }
.dark-section .section-sub { color: var(--on-dark-mut); }

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

/* ---------------------------------------------------------------
   4. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: .98rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap; position: relative; overflow: hidden; isolation: isolate;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--grad-brand); box-shadow: var(--shadow-brand); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #5a3cff 0%, #9a45ff 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline { color: var(--slate-900); background: transparent; border: 1.5px solid var(--line); }
.dark-section .btn-outline, .hero .btn-outline, .cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }
.btn-outline:hover { transform: translateY(-3px); border-color: var(--royal); color: var(--royal); box-shadow: var(--shadow-md); }
.dark-section .btn-outline:hover, .hero .btn-outline:hover, .cta-banner .btn-outline:hover { color: #fff; border-color: var(--purple); background: rgba(126,39,246,.14); box-shadow: var(--glow); }

.btn-ghost { color: var(--royal); padding-inline: 6px; }
.btn-ghost:hover { gap: 14px; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------
   5. NAVBAR
--------------------------------------------------------------- */
/* Floating navbar — sits a gap below the top; inner bar is the visible pill */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: var(--nav-gap) 20px 0;
  display: flex; justify-content: center;
}
.navbar .nav-inner {
  position: relative;
  width: 100%; max-width: 1320px; height: var(--nav-h);
  padding: 0 16px 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-radius: 18px; border: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
}
/* Solid single colour once scrolled — no glass/blur */
.navbar.scrolled .nav-inner {
  background: #0b1636;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 16px 44px -22px rgba(0,0,0,.7);
}
/* nav-menu dissolves on desktop so brand | links | cta align in one flex row */
.navbar .nav-menu { display: contents; }
/* True centering: links sit at the exact midpoint of the bar, independent of
   how wide the logo or the button group are (a flex "center remaining space"
   approach looks off-centre whenever those two ends differ in width). */
.navbar .nav-links {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  justify-content: center; margin: 0;
}
.navbar .nav-cta { display: flex; align-items: center; gap: 10px; }
/* navbar outline button ("Talk to us"/"Call us") — white for dark navbar */
.navbar .nav-cta .btn { padding: 11px 20px; font-size: .92rem; }
.navbar .btn-outline { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.navbar .btn-outline:hover { color: #fff; border-color: var(--purple); background: rgba(126,39,246,.16); box-shadow: var(--glow); }

.brand { display: flex; align-items: center; gap: 12px; }
/* Original logo on a white, rounded plate (header) */
.brand-logo { display: inline-flex; align-items: center; background: #fff; border-radius: 5px;
  padding: 7px 14px; box-shadow: 0 4px 14px rgba(8,14,32,.18); }
.brand-logo img { height: 34px; width: auto; display: block; }
.brand-mark { width: 38px; height: 38px; }
.brand-name { font-family: var(--f-head); font-weight: 700; font-size: 1.45rem; color: #fff; letter-spacing: -.02em; }
.brand-name .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--r-pill);
  color: rgba(255,255,255,.82); font-weight: 500; font-size: .96rem;
  transition: color .25s, background .25s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-links .chev { width: 16px; height: 16px; transition: transform .3s; }

/* dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 300px; padding: 10px; border-radius: var(--r-md);
  background: #0f1638;
  border: 1px solid rgba(255,255,255,.10); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
/* Bridges the invisible 14px gap above the panel — without this, moving the
   mouse from the trigger down to the menu leaves the hoverable area for an
   instant and the menu closes before you can reach it. */
.nav-dd-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd:hover .chev { transform: rotate(180deg); }
.nav-dd-menu a { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: var(--r-sm); transition: background .2s; }
.nav-dd-menu a:hover { background: rgba(126,39,246,.16); }
.nav-dd-ico { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--grad-brand-soft); color: #c9c2ff; }
.nav-dd-ico i { width: 20px; height: 20px; }
.nav-dd-menu .t { display: block; color: #fff; font-weight: 600; font-size: .95rem; font-family: var(--f-head); }
.nav-dd-menu .d { display: block; color: var(--on-dark-mut); font-size: .82rem; line-height: 1.4; margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: #fff;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
.nav-toggle i { width: 22px; height: 22px; }

/* ---------------------------------------------------------------
   6. HERO / BLUEPRINT BACKGROUND
--------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + var(--nav-gap) + 56px) 0 78px;
}
.hero.hero-page { padding: calc(var(--nav-h) + var(--nav-gap) + 48px) 0 60px; }

/* blueprint grid overlay */
.blueprint {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 85%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 85%);
}
.blueprint::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(126,39,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65,40,247,.06) 1px, transparent 1px);
  background-size: 256px 256px;
}
/* glowing blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; pointer-events: none; z-index: 0; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(65,40,247,.6), transparent 70%); top: -160px; right: -120px; }
.blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(126,39,246,.5), transparent 70%); bottom: -180px; left: -120px; }
.hero > .container { position: relative; z-index: 2; }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(1.9rem, 4vw, 3.4rem); color: #fff; letter-spacing: -.02em; line-height: 1.15; }
.hero-title .grad-text { background: linear-gradient(120deg,#8f7bff,#c08bff 60%,#e9b8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.18rem; color: var(--on-dark-mut); margin: 22px 0 32px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; color: var(--on-dark-mut); font-size: .92rem; }
.hero-avatars { display: flex; }
.hero-avatars span { width: 40px; height: 40px; border-radius: 50%; margin-left: -12px; border: 2px solid var(--navy);
  background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--f-head); font-size: .85rem; }
.hero-avatars span:first-child { margin-left: 0; }
.stars { color: #ffc24b; display: inline-flex; gap: 2px; }
.stars i { width: 16px; height: 16px; fill: currentColor; }

/* ---------------------------------------------------------------
   7. LEAD FORM (glass card)
--------------------------------------------------------------- */
.lead-card {
  position: relative; border-radius: var(--r-lg); padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.lead-card h3 { color: var(--slate-900); font-size: 1.35rem; }
.lead-card .lead-note { color: var(--slate-500); font-size: .9rem; margin: 6px 0 18px; }

/* Floating-label fields (compact; light by default, .form-dark for dark bg) */
.field { position: relative; margin-bottom: 14px; }
.field .ico { position: absolute; left: 14px; top: 13px; width: 19px; height: 19px; color: var(--slate-400); pointer-events: none; transition: color .2s; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px 13px 42px; border-radius: 11px;
  background: #fff; color: var(--slate-900);
  border: 1.5px solid var(--slate-200); outline: none; font-size: .95rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field select { color: var(--slate-700); }
.field textarea { min-height: 92px; resize: vertical; }
.field label {
  position: absolute; left: 42px; top: 13px; color: var(--slate-500);
  pointer-events: none; transition: all .2s var(--ease); font-size: .95rem;
}
.field textarea + label { top: 13px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--royal); background: #fff; box-shadow: 0 0 0 4px rgba(65,40,247,.12); }
.field input:focus ~ .ico, .field textarea:focus ~ .ico { color: var(--royal); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px; left: 12px; font-size: .74rem; padding: 0 8px; letter-spacing: .02em;
  background: #fff; border-radius: 6px; color: var(--royal);
}
.field select:focus + label, .field.filled label { top: -9px; left: 12px; font-size: .74rem; padding: 0 8px; background: #fff; border-radius: 6px; color: var(--royal); }
.field input::placeholder, .field textarea::placeholder { color: transparent; }

.field-err { color: #d92d20; font-size: .8rem; margin-top: 6px; display: none; padding-left: 4px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #f04438; }
.field.invalid .field-err { display: block; }

/* button loading + messages */
.btn-submit .label { display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.btn-submit .spin { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.btn-submit.loading .label { opacity: .0; }
.btn-submit.loading .spin { display: inline-block; }
.btn-submit.loading { pointer-events: none; opacity: .9; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg { display: none; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; font-size: .92rem; margin-top: 14px; }
.form-msg i { width: 18px; height: 18px; flex: 0 0 18px; }
.form-msg.show { display: flex; }
.form-msg.ok { background: #ecfdf3; color: #027a48; border: 1px solid #a6f4c5; }
.form-msg.err { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }

.form-consent { font-size: .8rem; color: var(--slate-500); margin-top: 14px; text-align: center; }

/* ---------------------------------------------------------------
   8. STATS
--------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 70px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.stat .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(2rem,3.4vw,2.8rem); color: #fff; letter-spacing: -.03em; }
.stat .num .grad-text { background: linear-gradient(120deg,#9a87ff,#d3a2ff); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.stat .lbl { color: var(--on-dark-mut); font-size: .92rem; margin-top: 4px; }

/* ---------------------------------------------------------------
   9. LOGO STRIP
--------------------------------------------------------------- */
.logo-strip { padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip .cap { text-align: center; color: var(--slate-500); font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.logo-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.logo-row .logo-item { font-family: var(--f-head); font-weight: 700; font-size: 1.3rem; color: var(--slate-400); display: inline-flex; align-items: center; gap: 8px; opacity: .8; transition: color .3s, opacity .3s; }
.logo-row .logo-item:hover { color: var(--slate-700); opacity: 1; }
.logo-row .logo-item i { width: 22px; height: 22px; }
.dark-section .logo-strip { border-color: rgba(255,255,255,.08); }

/* ---------------------------------------------------------------
   10. CARDS (services / features / values)
--------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  overflow: hidden;
}
.card::after { content:""; position:absolute; inset:0 0 auto 0; height:3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--grad-brand-soft); color: var(--royal); border: 1px solid rgba(65,40,247,.14); }
.card-ico i { width: 28px; height: 28px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: .98rem; }
.card .card-list { margin-top: 18px; margin-left: 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.card .card-list li { display: flex; gap: 10px; align-items: center; color: var(--slate-700); font-size: .94rem; }
.card .card-list i { width: 18px; height: 18px; color: var(--royal); flex: 0 0 18px; }
.card .card-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; color: var(--royal); font-weight: 600; font-family: var(--f-head); font-size: .95rem; transition: gap .3s; }
.card:hover .card-link { gap: 13px; }

/* dark card */
.dark-section .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); }
.dark-section .card h3 { color: #fff; }
.dark-section .card p { color: var(--on-dark-mut); }
.dark-section .card-ico { background: rgba(126,39,246,.14); color: #c9b8ff; border-color: rgba(126,39,246,.24); }
.dark-section .card .card-list li { color: var(--on-dark-mut); }

/* feature (icon left) */
.feature { display: flex; gap: 18px; padding: 6px; }
.feature .fico { flex: 0 0 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand-soft); color: var(--royal); border: 1px solid rgba(65,40,247,.14); }
.feature .fico i { width: 26px; height: 26px; }
.feature h4 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { color: var(--slate-500); font-size: .95rem; }
.dark-section .feature h4 { color:#fff; } .dark-section .feature p { color: var(--on-dark-mut); }
.dark-section .feature .fico { background: rgba(126,39,246,.14); color:#c9b8ff; border-color: rgba(126,39,246,.24); }

/* ---------------------------------------------------------------
   11. SPLIT / IMAGE-COPY
--------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.mock {
  border-radius: var(--r-xl); aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: var(--grad-hero); border: 1px solid rgba(255,255,255,.08);
}
.mock .blueprint { -webkit-mask-image: none; mask-image: none; opacity: .6; }
.mock-badge { position: absolute; padding: 14px 18px; border-radius: 16px; background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 3; }
.mock-badge .mi { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-brand); color:#fff; }
.mock-badge .mi i { width: 22px; height: 22px; }
.mock-badge .mt { font-family: var(--f-head); font-weight: 700; color: var(--slate-900); font-size: 1.05rem; line-height: 1.1; }
.mock-badge .md { color: var(--slate-500); font-size: .78rem; }
.bl { top: 22px; left: 22px; } .br { bottom: 22px; right: 22px; } .cr { top: 50%; right: -18px; transform: translateY(-50%); }

.check-list { display: grid; gap: 14px; margin-top: 28px; margin-left: 0; padding-left: 0; }
.check-list li { display: flex; gap: 12px; align-items: center; color: var(--slate-700); }
.check-list .ck { flex: 0 0 24px; height: 24px; border-radius: 7px; background: var(--grad-brand-soft); color: var(--royal); display: grid; place-items: center; }
.check-list .ck i { width: 15px; height: 15px; }
/* On dark hero/CTA backgrounds the base slate-700 text is nearly invisible —
   make it clearly white wherever a check-list sits on a dark surface. */
.dark-section .check-list li, .hero .check-list li, .cta-banner .check-list li {
  color: #fff;
}

/* ---------------------------------------------------------------
   12. TIMELINE / PROCESS
--------------------------------------------------------------- */
.process { position: relative; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-line::before { content:""; position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126,39,246,.5), transparent); }
.step { text-align: center; position: relative; z-index: 1; }
.step .n { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 20px; display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 800; font-size: 1.3rem; color:#fff; background: var(--grad-brand);
  box-shadow: var(--shadow-brand); position: relative; }
.step .n i { width: 28px; height: 28px; }
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: .93rem; }
.dark-section .step h4 { color:#fff;} .dark-section .step p { color: var(--on-dark-mut); }

/* vertical timeline (about) */
.vtimeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 8px; }
.vtimeline::before { content:""; position:absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--royal), var(--purple), transparent); }
.vitem { position: relative; padding: 0 0 40px 76px; }
.vitem:last-child { padding-bottom: 0; }
.vitem .vn { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-brand); color:#fff; font-family: var(--f-head); font-weight: 800; box-shadow: var(--shadow-brand); }
.vitem .yr { font-family: var(--f-head); font-weight: 700; color: var(--royal); font-size: .9rem; letter-spacing: .06em; }
.vitem h4 { font-size: 1.25rem; margin: 4px 0 8px; }
.vitem p { color: var(--slate-500); }
.dark-section .vitem h4 { color:#fff; } .dark-section .vitem p { color: var(--on-dark-mut); } .dark-section .vitem .yr { color:#c9b8ff; }

/* ---------------------------------------------------------------
   13. TECH STACK
--------------------------------------------------------------- */
.tech-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.tech { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 26px 12px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); transition: transform .35s var(--ease), border-color .35s, background .35s; }
.tech:hover { transform: translateY(-6px); border-color: rgba(126,39,246,.4); background: rgba(126,39,246,.10); }
.tech .ti { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: rgba(255,255,255,.06); color:#c9b8ff; }
.tech .ti i { width: 26px; height: 26px; }
.tech span { color: var(--on-dark-mut); font-size: .86rem; font-weight: 500; }

/* ---------------------------------------------------------------
   14. TESTIMONIALS
--------------------------------------------------------------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tcard .stars { color:#ffb020; margin-bottom: 16px; }
.tcard .stars i { width:18px; height:18px; fill: currentColor; }
.tcard blockquote { font-size: 1.05rem; color: var(--slate-700); line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.tcard .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-brand); color:#fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; }
.tcard .who .nm { font-family: var(--f-head); font-weight: 700; color: var(--slate-900); font-size: .98rem; }
.tcard .who .rl { color: var(--slate-500); font-size: .84rem; }

/* ---------------------------------------------------------------
   15. PRICING
--------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.price {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price.featured { background: var(--navy); color: var(--on-dark); border-color: transparent; box-shadow: var(--shadow-lg); overflow: hidden; }
.price.featured::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 80% 0%, rgba(126,39,246,.35), transparent 60%); pointer-events:none; }
.price .tag { position: absolute; top: 22px; right: 22px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color:#fff; background: var(--grad-brand); padding: 6px 12px; border-radius: var(--r-pill); }
.price .pl-name { font-family: var(--f-head); font-weight: 700; font-size: 1.2rem; }
.price.featured .pl-name { color:#fff; }
.price .pl-desc { color: var(--slate-500); font-size: .9rem; margin: 6px 0 20px; }
.price.featured .pl-desc { color: var(--on-dark-mut); }
.price .amt { font-family: var(--f-head); font-weight: 800; font-size: 2.6rem; color: var(--slate-900); letter-spacing: -.03em; }
.price.featured .amt { color:#fff; }
.price .amt small { font-size: .95rem; font-weight: 500; color: var(--slate-500); }
.price.featured .amt small { color: var(--on-dark-mut); }
.price .pl-list { display: grid; gap: 13px; margin: 24px 0 28px; margin-left: 0; padding-left: 0; list-style: none; }
.price .pl-list li { display:flex; gap:11px; align-items:flex-start; color: var(--slate-700); font-size:.94rem; }
.price.featured .pl-list li { color: var(--on-dark-mut); }
.price .pl-list i { width:18px; height:18px; color: var(--royal); flex:0 0 18px; margin-top:3px; }
.price.featured .pl-list i { color:#b79bff; }
.price .btn { margin-top: auto; }

/* ---------------------------------------------------------------
   16. FAQ (accordion)
--------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; background: #fff; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: rgba(65,40,247,.3); box-shadow: var(--shadow-md); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; font-family: var(--f-head); font-weight: 600; font-size: 1.06rem; color: var(--slate-900); }
.faq-q .pm { flex: 0 0 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--royal); transition: transform .35s var(--ease); }
.faq-q .pm i { width: 18px; height: 18px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--grad-brand); color:#fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--slate-500); }
.dark-section .faq-item { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); }
.dark-section .faq-q { color: #fff; }
.dark-section .faq-a p { color: var(--on-dark-mut); }

/* ---------------------------------------------------------------
   17. CTA BANNER
--------------------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 72px 48px; text-align: center;
  background: var(--grad-hero); color: var(--on-dark); box-shadow: var(--shadow-lg); }
.cta-banner h2 { color:#fff; font-size: clamp(2rem,4vw,3rem); }
.cta-banner p { color: var(--on-dark-mut); font-size: 1.1rem; max-width: 620px; margin: 16px auto 30px; }
.cta-banner .hero-cta { justify-content: center; }
.cta-inner { position: relative; z-index: 2; }

/* ---------------------------------------------------------------
   18. PORTFOLIO
--------------------------------------------------------------- */
.pf-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.pf-filter button { padding: 10px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: .92rem; color: var(--slate-500);
  border: 1px solid var(--line); background: #fff; transition: all .3s var(--ease); }
.pf-filter button:hover { color: var(--royal); border-color: rgba(65,40,247,.3); }
.pf-filter button.active { color:#fff; background: var(--grad-brand); border-color: transparent; box-shadow: var(--shadow-brand); }

.pf-grid { columns: 3; column-gap: 24px; }
.pf-card { break-inside: avoid; margin-bottom: 24px; border-radius: var(--r-lg); overflow: hidden; position: relative;
  cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pf-thumb { position: relative; aspect-ratio: var(--ar, 4/3); background: var(--grad-hero); overflow: hidden; }
.pf-thumb .blueprint { -webkit-mask-image:none; mask-image:none; opacity:.5; }
.pf-thumb .pf-mono { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: 2rem; color: rgba(255,255,255,.9); }
.pf-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,32,0) 30%, rgba(8,14,32,.92)); opacity: 0; transition: opacity .4s var(--ease); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-overlay .cat { color:#c9b8ff; font-size:.8rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }
.pf-overlay h3 { color:#fff; font-size: 1.3rem; margin: 4px 0 6px; }
.pf-overlay .view { display:inline-flex; align-items:center; gap:8px; color:#fff; font-weight:600; font-size:.9rem; margin-top:8px; }
.pf-overlay .view i { width:18px; height:18px; }

/* modal */
.pf-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.pf-modal.open { display: flex; }
.pf-modal-bg { position: absolute; inset: 0; background: rgba(6,10,24,.7); backdrop-filter: blur(8px); }
.pf-modal-box { position: relative; z-index: 1; width: 100%; max-width: 880px; max-height: 88vh; overflow-y: auto; background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); animation: modalUp .4s var(--ease); }
@keyframes modalUp { from { opacity:0; transform: translateY(24px) scale(.98);} to { opacity:1; transform:none; } }
.pf-modal-hero { aspect-ratio: 16/7; background: var(--grad-hero); position: relative; overflow: hidden; display:grid; place-items:center; }
.pf-modal-hero .pf-mono { font-family: var(--f-head); font-weight:800; font-size: 3rem; color: rgba(255,255,255,.92); }
.pf-modal-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.14); backdrop-filter: blur(6px); color:#fff; display:grid; place-items:center; z-index:3; transition: background .2s; }
.pf-modal-close:hover { background: rgba(255,255,255,.28); }
.pf-modal-body { padding: 36px; }
.pf-modal-body .cat { color: var(--royal); font-weight:600; letter-spacing:.1em; text-transform:uppercase; font-size:.8rem; }
.pf-modal-body h2 { font-size: 2rem; margin: 8px 0 16px; }
.pf-meta { display:flex; flex-wrap:wrap; gap: 28px; margin: 24px 0; padding: 22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pf-meta .m .k { color: var(--slate-500); font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; }
.pf-meta .m .v { font-family: var(--f-head); font-weight:700; color: var(--slate-900); font-size:1.05rem; margin-top:4px; }
.pf-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.pf-tags span { font-size:.82rem; color: var(--royal); background: var(--grad-brand-soft); border:1px solid rgba(65,40,247,.16); padding:6px 12px; border-radius: var(--r-pill); }

/* ---------------------------------------------------------------
   19. CONTACT
--------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.info-item { display:flex; gap:16px; align-items:flex-start; padding: 16px 0; border-bottom:1px solid var(--line); }
.info-item:last-child { border-bottom:0; }
.info-item .ii { flex:0 0 48px; height:48px; border-radius:13px; display:grid; place-items:center; background: var(--grad-brand-soft); color: var(--royal); border:1px solid rgba(65,40,247,.14); }
.info-item .ii i { width:22px; height:22px; }
.info-item .k { font-size:.82rem; color: var(--slate-500); text-transform:uppercase; letter-spacing:.06em; }
.info-item .v { font-family: var(--f-head); font-weight:600; color: var(--slate-900); font-size:1.02rem; margin-top:2px; }
.info-item .v a:hover { color: var(--royal); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width:100%; height: 360px; border:0; display:block; filter: grayscale(.2) contrast(1.02); }
.socials { display:flex; gap:10px; margin-top: 18px; }
.socials a { width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background: var(--slate-100); color: var(--slate-700); transition: all .3s var(--ease); }
.socials a:hover { background: var(--grad-brand); color:#fff; transform: translateY(-3px); box-shadow: var(--shadow-brand); }
.socials a i { width:20px; height:20px; }

/* ---------------------------------------------------------------
   20. TEAM
--------------------------------------------------------------- */
.team-card { text-align:center; background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .ta { width: 96px; height:96px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad-brand); color:#fff; display:grid; place-items:center; font-family: var(--f-head); font-weight:800; font-size:1.8rem; box-shadow: var(--shadow-brand); }
.team-card h4 { font-size:1.2rem; } .team-card .rl { color: var(--royal); font-weight:600; font-size:.92rem; margin: 2px 0 12px; }
.team-card p { color: var(--slate-500); font-size:.92rem; }

/* ---------------------------------------------------------------
   21. FOOTER
--------------------------------------------------------------- */
.footer { background: #060c1f; color: var(--on-dark-mut); padding: 76px 0 32px; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.footer .blob-2 { opacity:.25; }
.footer > .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand-name { font-size: 1.5rem; }
.footer-about { margin: 18px 0; max-width: 320px; font-size: .95rem; line-height: 1.7; }
.footer h5 { color:#fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: .95rem; transition: color .25s, padding .25s; }
.footer-col a:hover { color:#fff; padding-left: 5px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top: 26px; flex-wrap: wrap; font-size:.9rem; }
.footer .socials a, .footer-bottom .socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); color: var(--on-dark-mut); }
.footer .socials a:hover, .footer-bottom .socials a:hover { color:#fff; background: var(--grad-brand); box-shadow: var(--shadow-brand); }
.footer .socials a svg, .footer-bottom .socials a svg { width: 18px; height: 18px; }
.footer .socials { align-items: center; }
.footer-contact { display:grid; gap:12px; }
.footer-contact a, .footer-contact span { display:flex; gap:10px; align-items:flex-start; font-size:.92rem; }
.footer-contact i { width:18px; height:18px; color:#8f7bff; flex:0 0 18px; margin-top:3px; }

/* breadcrumb */
.crumb { display:flex; align-items:center; gap:8px; color: var(--on-dark-mut); font-size:.88rem; margin-bottom: 20px; }
.crumb a:hover { color:#fff; } .crumb i { width:15px; height:15px; }

/* misc utilities */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}.mb-5{margin-bottom:48px}
.pillrow{display:flex;flex-wrap:wrap;gap:10px}
.pill{padding:8px 16px;border-radius:var(--r-pill);background:var(--grad-brand-soft);border:1px solid rgba(65,40,247,.16);color:var(--royal);font-weight:600;font-size:.86rem}
.dark-section .pill{background:rgba(126,39,246,.14);border-color:rgba(126,39,246,.24);color:#c9b8ff}
.divider{height:1px;background:var(--line);border:0;margin:0}

/* ---------------------------------------------------------------
   ICON SIZING — lucide replaces <i data-lucide> with <svg class="lucide">
   and injected brand icons also use <svg class="lucide">. These rules
   size the generated SVGs to match the design.
--------------------------------------------------------------- */
svg.lucide { flex-shrink: 0; display: block; }
.eyebrow .chev, .nav-links .chev { width:16px; height:16px; }
.nav-dd-ico svg { width:20px; height:20px; }
.nav-toggle svg { width:22px; height:22px; }
.card-ico svg { width:28px; height:28px; }
.card-list svg { width:18px; height:18px; }
.card-link svg { width:18px; height:18px; }
.feature .fico svg { width:26px; height:26px; }
.step .n svg { width:28px; height:28px; }
.tech .ti svg { width:26px; height:26px; }
.stars svg { width:16px; height:16px; fill: currentColor; }
.tcard .stars svg { width:18px; height:18px; }
.price .pl-list svg { width:18px; height:18px; }
.faq-q .pm svg { width:18px; height:18px; }
.info-item .ii svg { width:22px; height:22px; }
.socials a svg { width:20px; height:20px; }
.footer-contact svg { width:18px; height:18px; }
.crumb svg { width:15px; height:15px; }
.check-list .ck svg { width:15px; height:15px; }
.mock-badge .mi svg { width:22px; height:22px; }
.pf-overlay .view svg { width:18px; height:18px; }
.pf-modal-close svg { width:22px; height:22px; }
.logo-row .logo-item svg { width:22px; height:22px; }
.hero-trust .stars svg { width:16px; height:16px; }

/* ---------------------------------------------------------------
   DESCRIPTION / BODY-COPY TEXT SIZE (sitewide, excludes headings)
--------------------------------------------------------------- */
.section-sub, .hero-sub, .card p, .feature p, .faq-a p, .step p, .vitem p,
.team-card p, .cta-banner p, .footer-about, .tcard blockquote, .price .pl-desc,
.lead-card .lead-note, .form-consent, .pf-modal-body p {
  font-size: 17px;
}

/* portfolio aspect helpers (avoid inline styles) */
.ar-tall{--ar:3/4}.ar-wide{--ar:4/3}.ar-sq{--ar:1/1}.ar-xtall{--ar:4/5}
.hero-form-anchor{scroll-margin-top:100px}
