/* =============================================
   style.css – BryanF Design
   Premium dark portfolio – Vanilla CSS
   ============================================= */

/* ── 1. GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── 2. CSS VARIABLES ── */
:root {
  --brand:          #B4E332;
  --brand-dim:      rgba(180,227,50,.45);
  --brand-glow:     rgba(180,227,50,.22);
  --bg:             #0a0a0a;
  --bg-surface:     rgba(255,255,255,.06);
  --bg-card:        rgba(255,255,255,.03);
  --border:         rgba(255,255,255,.10);
  --border-hover:   rgba(255,255,255,.20);
  --text:           #F2F2F2;
  --text-muted:     rgba(255,255,255,.70);
  --text-faint:     rgba(255,255,255,.45);
  --radius-sm:      10px;
  --radius:         14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     0.3s ease;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── 3. RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── 4. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

/* ── 5. AMBIENT LAYERS ── */

/* Aurora */
.aurora {
  position: fixed;
  inset: -50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(180,227,50,0.08) 0vw, transparent 50vw),
    radial-gradient(ellipse at 80% 20%, rgba(180,227,50,0.05) 0vw, transparent 50vw),
    radial-gradient(ellipse at 50% 80%, rgba(180,227,50,0.07) 0vw, transparent 60vw);
  background-color: var(--bg);
  animation: auroraBreathe 20s ease-in-out infinite alternate;
  filter: blur(40px) saturate(120%);
}
@keyframes auroraBreathe {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(3%, 4%); }
  100% { transform: scale(1.1) translate(-2%, -3%); }
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* Glow (follows mouse) */
.glow {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  width: min(78vw, 720px);
  aspect-ratio: 1;
  border-radius: 9999px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 60%);
  filter: blur(90px);
  transform: translate(-50%, -50%);
  transition: left .08s ease, top .08s ease;
}

/* Canvas trail */
.trail {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── 6. CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  mix-blend-mode: normal;
  transition: width .15s, height .15s, opacity .15s;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(180,227,50,.7);
  backdrop-filter: blur(1px);
  mix-blend-mode: screen;
  transition: width .2s, height .2s, opacity .2s;
}

body.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  opacity: .7;
}
body.cursor-hover .cursor-ring {
  width: 42px;
  height: 42px;
  opacity: .5;
}

@media (hover: none), (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: .65em 1.35em;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  will-change: transform;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); }

.btn-solid {
  background: var(--brand);
  color: #141414;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 8px 28px rgba(180,227,50,.35);
}
.btn-solid:hover { box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 12px 36px rgba(180,227,50,.55); }

.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand);
  color: #141414;
}

#cqAiBtn:hover,
#cqAiBtn:focus-visible,
#cqAiBtn:hover i,
#cqAiBtn:hover span,
#cqAiBtn:focus-visible i,
#cqAiBtn:focus-visible span {
  color: #141414 !important;
}

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-muted);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,.10);
  color: var(--text);
}

.btn-sm { font-size: 0.8rem; padding: .45em 1.1em; border-radius: var(--radius-sm); }
.btn-lg { font-size: 1.05rem; padding: .8em 1.8em; border-radius: 16px; }

.btn-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(180,227,50,.8);
}

/* ── 8. PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(100% 90% at 90% 80%, rgba(0,0,0,.2), rgba(0,0,0,.98) 90%);
  transition: opacity .4s ease, visibility .4s ease;
}

.preloader__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 70% at 75% 70%, rgba(180,227,50,.2), transparent 80%);
  filter: blur(18px);
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: .2; }
  50%       { opacity: .5; }
}

.preloader__ring {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 9999px;
  box-shadow: 0 0 14px rgba(180,227,50,.55), inset 0 0 0 2px var(--brand);
  animation: ringExpand 1.3s ease-out forwards;
}

@keyframes ringExpand {
  0%   { transform: scale(.5); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.preloader__logo {
  position: relative;
  z-index: 1;
  width: clamp(200px, 40vw, 320px);
  height: auto;
  object-fit: contain;
  animation: logoIn .9s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes logoIn {
  0%   { opacity: 0; transform: scale(.88); }
  60%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── 9. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 70;
  width: 100%;
  transition: transform .3s ease;
}

.navbar.headroom-hidden {
  transform: translateY(-110%);
}

.navbar__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
}

/* Skewed dark ribbon */
.navbar__ribbon {
  position: absolute;
  inset-x: 0;
  top: -10px;
  height: 95px;
  z-index: -2;
  transform-origin: top;
  transform: skewY(-2.4deg);
  background: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.65));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08), 0 8px 40px rgba(0,0,0,.35);
}

/* Animated light bar */
.navbar__lightbar {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  background-size: 200% 100%;
  animation: lightScan 6s linear infinite;
}

@keyframes lightScan {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 70px;
  transition: height .25s ease;
}

.navbar.scrolled .navbar__inner { height: 58px; }

/* Logo */
.navbar__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}
.navbar.scrolled .navbar__logo img { transform: scale(.92); }

/* Desktop nav */
.navbar__desktop {
  display: none;
  align-items: center;
  gap: .75rem;
}

@media (min-width: 768px) {
  .navbar__desktop { display: flex; }
}

/* Pill group */
.navbar__pills {
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: .25rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
}

.navbar__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .4em 1.2em;
  border-radius: 14px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s, background .2s;
}

.navbar__pill:hover { color: #fff; }

.navbar__pill--active {
  color: #fff;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.navbar__pill--active::after {
  content: '';
  position: absolute;
  left: .75rem; right: .75rem;
  bottom: -3px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fff, var(--brand), transparent);
  box-shadow: 0 0 18px rgba(180,227,50,.6);
}

/* CTA button */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  height: 38px;
  padding: 0 1.1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.navbar__cta:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.navbar__dot {
  width: 7px; height: 7px;
  border-radius: 9999px;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(180,227,50,.7);
  flex-shrink: 0;
}

/* ── 10. BURGER ── */
.burger {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  transition: background var(--transition);
}

.burger:hover { background: rgba(255,255,255,.13); }

@media (min-width: 768px) {
  .burger { display: none; }
}

#navFastTrackBtn {
  white-space: nowrap;
  gap: .45em;
  font-size: .82rem;
  padding-inline: .95em;
}

#navFastTrackBtn i {
  font-size: .78rem;
}

@media (max-width: 1023px) {
  .navbar__desktop { display: none !important; }
  .burger { display: grid !important; }
}

@media (min-width: 1024px) {
  .navbar__desktop { display: flex; }
  .burger { display: none; }
}

.burger__line {
  display: block;
  position: absolute;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Line positions */
.burger__line:nth-child(1) { transform: translateY(-7px); }
.burger__line:nth-child(3) { transform: translateY(7px); }

/* Open state */
.burger.open .burger__line:nth-child(1) { transform: rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; }
.burger.open .burger__line:nth-child(3) { transform: rotate(-45deg); }

.burger__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(180,227,50,.2);
  opacity: 0;
  transition: opacity .3s;
}
.burger:hover .burger__glow { opacity: 1; }

/* ── 11. SOCIAL DOCK ── */
.social-dock {
  position: fixed;
  right: 1rem;
  top: 50svh;
  transform: translateY(-50%);
  z-index: 65;
  display: none;
  flex-direction: column;
  gap: .5rem;
}

@media (min-width: 1024px) {
  .social-dock { display: flex; }
}

.social-dock__item {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(18,19,20,.92);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.05);
}

.social-dock__item:hover {
  background: rgba(26,27,29,.96);
  transform: translateX(-3px);
}

.social-dock__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  padding: .2em .6em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18,19,20,.98);
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.social-dock__item:hover .social-dock__tooltip { opacity: 1; }

/* ── 12. MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

/* Remove hidden display:none override so CSS opacity transition works */
.mobile-menu[hidden] {
  display: grid !important; /* keep in flow */
  opacity: 0;
  pointer-events: none;
}

.mobile-menu__close {
  position: absolute;
  right: 1rem;
  top: max(1rem, env(safe-area-inset-top));
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  transition: background var(--transition);
}

.mobile-menu__close:hover { background: rgba(255,255,255,.14); }

.mobile-menu__close span {
  display: block;
  position: absolute;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu__close span:first-child { transform: rotate(45deg); }
.mobile-menu__close span:last-child  { transform: rotate(-45deg); }

.mobile-menu__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(16,17,18,.88);
  backdrop-filter: blur(20px);
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: translateY(10px) scale(.97);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  max-height: min(760px, calc(100svh - 2rem));
  overflow-y: auto;
}

.mobile-menu:not([hidden]) .mobile-menu__panel {
  transform: translateY(0) scale(1);
}

.mobile-menu__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 20px 80px rgba(180,227,50,.15), inset 0 1px 0 rgba(255,255,255,.06);
  pointer-events: none;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mobile-menu__nav li {
  width: 100%;
}

.mobile-menu__link {
  display: block;
  text-align: center;
  padding: 1.1em 1.5em;
  border-radius: 18px;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  transition: background var(--transition), color var(--transition);
  overflow-wrap: anywhere;
}

.mobile-menu__link i {
  font-size: .92em;
  margin-right: .42em;
}

.mobile-menu__link:hover { background: rgba(255,255,255,.08); color: #fff; }

.mobile-menu__link--active {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.mobile-menu__link--cta {
  background: var(--brand);
  color: #141414;
  font-weight: 800;
  box-shadow: 0 8px 34px rgba(180,227,50,.5);
  width: 100%;
  text-align: center;
}
.mobile-menu__link--cta:hover {
  background: #c5f040;
  color: #141414;
}

.mobile-menu__social {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.75rem;
}

.mobile-menu__social-item {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background var(--transition);
}
.mobile-menu__social-item:hover { background: rgba(255,255,255,.14); }

/* ── 13. ICON UTILITIES ── */
/* Direct img-based SVG icons (replaces mask-icon for reliability) */
.svg-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(10);
  flex-shrink: 0;
}

.svg-icon-lg {
  width: 40px;
  height: 40px;
}

/* Legacy mask-icon kept for any remaining uses */
.mask-icon {
  display: inline-block;
  width: 20px; height: 20px;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
  background-color: currentColor;
  flex-shrink: 0;
}

/* Tool chip icon sizing override */
.tool-chip__icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}


/* ── 14. HERO SECTION ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vh, 9rem) clamp(4rem, 8vh, 7rem);
}

.hero__bg {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(180,227,50, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(180,227,50, 0.08) 0%, transparent 50%);
  animation: heroFloat 15s ease-in-out infinite alternate;
  filter: blur(50px);
}

@keyframes heroFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.05); }
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .05;
  mix-blend-mode: soft-light;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E") 0 0 / 220px;
}

.hero__halo {
  position: absolute;
  left: 50%; top: 40%;
  z-index: 1;
  width: min(90vw, 900px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(180,227,50,.16) 0%, transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3em .9em;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 9999px;
  background: var(--brand);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180,227,50,.5); }
  50%       { box-shadow: 0 0 0 5px transparent; }
}

/* Headline */
.hero__title {
  font-size: clamp(2.4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
  animation: breathGlow 3s ease-in-out infinite;
}

.hero__title-accent {
  color: var(--brand);
  filter: drop-shadow(0 0 36px rgba(180,227,50,.45));
}

@keyframes breathGlow {
  0%, 100% { filter: drop-shadow(0 0 0px transparent); }
  50%       { filter: drop-shadow(0 0 16px rgba(180,227,50,.25)); }
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

/* CTAs */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Scroll cue */
.scroll-cue {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 999px;
  position: relative;
  opacity: .75;
}

.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: var(--brand);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* ── 15. TOOLS RAIL ── */
.tools-rail {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding-block: 1.5rem;
}

.tools-rail__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.tools-rail__track-wrap {
  position: relative;
  overflow: hidden;
}

/* Side fades */
.tools-rail__fade {
  position: absolute;
  inset-y: 0;
  z-index: 10;
  width: 5rem;
  pointer-events: none;
}

.tools-rail__fade--left {
  left: 0;
  background: linear-gradient(to right, #0f0f10, transparent);
}

.tools-rail__fade--right {
  right: 0;
  background: linear-gradient(to left, #0f0f10, transparent);
}

.tools-rail__track {
  display: flex;
  will-change: transform;
}

.tools-rail__set {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

/* Individual chip */
.tool-chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6em 1.1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.4);
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  cursor: default;
}

.tool-chip:hover { color: #fff; background: rgba(255,255,255,.07); }

.tool-chip__icon { width: 22px; height: 22px; }

.tool-chip__dot {
  display: none;
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: var(--brand);
}

.tool-chip:hover .tool-chip__dot { display: inline-block; }

/* ── 16. PROJECTS ── */
.projects {
  padding-block: clamp(4rem, 8vh, 7rem);
}

.projects__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.projects__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}

.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Project Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.project-card:hover { border-color: rgba(255,255,255,.18); }

/* Cover image */
.project-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.project-card:hover .project-card__cover img { transform: scale(1.04); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
  pointer-events: none;
}

.project-card__logo-wrap {
  position: absolute;
  left: 1rem; top: 1rem;
  padding: .4em .8em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

.project-card__logo-wrap img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* Card body */
.project-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .9rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: .25em .75em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: .72rem;
  color: var(--text-muted);
}

.project-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* Glow on hover */
.project-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: 0 0 0 1px rgba(180,227,50,.35), inset 0 0 24px rgba(180,227,50,.12);
}

.project-card:hover .project-card__glow { opacity: 1; }

@supports (content-visibility: auto) {
  .projects,
  .faq,
  .clients,
  #fast-track-section,
  .cta,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

/* ── 17. CLIENTS ── */
.clients {
  padding-block: clamp(3rem, 6vh, 5rem);
}

.clients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  width: 100%;
}

@media (min-width: 768px) { .clients__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

@media (max-width: 767px) {
  .clients .container { overflow-x: clip; }
  .client-card { padding: .95rem .72rem; }
  .client-card img { max-height: 36px; }
}

.client-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.75);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  cursor: default;
  aspect-ratio: 2 / 1;
}

.client-card:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.client-card img {
  max-height: 48px;
  max-width: 84%;
  object-fit: contain;
  object-position: center;
}

.client-raw {
  /* Base marker class for client logo assets */
}

.client-mask {
  width: 80%;
  height: 80%;
  max-height: 44px;
}

.client-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: 0 16px 40px rgba(180,227,50,.10);
}

.client-card:hover .client-card__glow { opacity: 1; }

.clients__partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.clients__partners-wrap {
  grid-column: 1 / -1;
  margin-top: .2rem;
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(140deg, rgba(12,16,14,.92), rgba(18,24,22,.9));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  pointer-events: none;
  transition: max-height .35s ease, opacity .25s ease, padding .25s ease, margin .25s ease;
}

.clients.clients--expanded .clients__partners-wrap {
  max-height: 760px;
  opacity: 1;
  padding-top: .85rem;
  padding-bottom: .85rem;
  margin-top: .2rem;
  pointer-events: auto;
}

.clients__partners-title {
  margin: 0 0 .65rem;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.client-partner-card {
  aspect-ratio: 2.2 / 1;
  min-height: 90px;
  padding: .95rem .85rem;
}

@media (max-width: 767px) {
  .clients__partners-wrap {
    padding: .72rem;
  }
  .client-partner-card {
    min-height: 78px;
  }
}

@media (min-width: 768px) {
  .clients__partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .clients__partners {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── 18. CTA ── */
.cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: clamp(5rem, 10vh, 8rem);
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0f0e, #0a0a0a, #111);
  z-index: -2;
}

.cta__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
}

.cta__glow-pulse {
  position: absolute;
  left: 50%; top: -20%;
  transform: translateX(-50%);
  width: 70vmin; height: 70vmin;
  border-radius: 9999px;
  background: var(--brand);
  filter: blur(140px);
  opacity: .15;
  animation: glowFloat 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowFloat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%       { transform: translateX(-50%) scale(1.08); }
}

.cta__inner {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-bottom: 2rem; /* Fix lightbar overlap */
  text-align: center;
}

.cta__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.cta__sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Animated bottom light bar */
.cta__lightbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  background-size: 200% 100%;
  animation: lightScan 5.5s linear infinite;
}

/* ── 19. FOOTER ── */
.footer {
  position: relative;
  background: rgba(10,10,11,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding-top: .5px; /* so topline is visible */
}

.footer__topline {
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  filter: drop-shadow(0 0 8px rgba(180,227,50,.6));
  pointer-events: none;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

.footer__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer__tagline-highlight { color: var(--text); }

.footer__social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.footer__social-item {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.footer__social-item:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-2px);
}

.footer__col-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav-link::before {
  content: '';
  display: inline-block;
  width: 0; height: 2px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  transition: width .3s ease;
  flex-shrink: 0;
}

.footer__nav-link:hover { color: var(--text); }
.footer__nav-link:hover::before { width: 14px; }

.footer__nav-cta { margin-top: .35rem; }

.footer__contact-link {
  display: block;
  padding: .75em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
  transition: background var(--transition), color var(--transition);
}

.footer__contact-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.footer__cta-box {
  margin-top: .5rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.3);
}

.footer__cta-box p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.footer__cta-box strong { color: var(--text); }

.footer__start-btn {
  background: var(--brand);
  color: #141414;
  font-weight: 700;
  border: none;
}
.footer__start-btn:hover { filter: brightness(1.08); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
  font-size: .78rem;
  color: var(--text-faint);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .footer__bottom,
  .footer__bottom p,
  .footer__bottom > div {
    text-align: center;
    justify-content: center !important;
    width: 100%;
  }
}

.footer__made { color: rgba(255,255,255,.35); }

/* Footer payment methods */
.footer-payments {
  margin-top: .5rem;
  padding: 1rem 0 1.4rem;
  text-align: center;
}

.footer-payments__label {
  display: inline-block;
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: .7rem;
}

.footer-payments__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  gap: .55rem;
  align-items: stretch;
  justify-content: center;
}

.footer-payments__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .5rem .7rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
}

.footer-payments__item svg,
.footer-payments__item img {
  display: block;
  width: auto;
  max-width: 56px;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .mobile-menu {
    place-items: start center;
    overflow-y: auto;
    padding-top: max(4.75rem, env(safe-area-inset-top));
    padding-bottom: 1rem;
  }

  .mobile-menu__panel {
    max-width: min(520px, calc(100vw - 1rem));
    margin-inline: .5rem;
    padding: 1.25rem 1rem 1.1rem;
  }

  .mobile-menu__nav {
    gap: .5rem;
  }

  .footer-payments__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-payments__item {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── 20. ABOUT MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay[hidden] {
  display: grid !important;
  opacity: 0;
  pointer-events: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(16,17,18,.94);
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}

.modal-overlay:not([hidden]) .modal {
  transform: translateY(0) scale(1);
}

.modal__topline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.modal__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .modal__grid { grid-template-columns: 1fr 1.6fr; gap: 2.5rem; }
}

.modal__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  background: rgba(0,0,0,.3);
}

.modal__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.modal__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
}

.modal__text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .65rem;
}

.modal__text strong { color: var(--text); }

.modal__social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

/* ── 21. INTERSECTION OBSERVER ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 22. RESPONSIVE TWEAKS ── */
@media (max-width: 640px) {
  .hero { padding-block: 7rem 4rem; }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .projects__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__title { letter-spacing: -.01em; font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .cta__btns { flex-direction: column; align-items: stretch; width: 100%; }
  .cta__btns .btn { width: 100%; justify-content: center; }
  .glow { width: min(95vw, 640px); filter: blur(75px); }
  .mobile-menu__link { font-size: 1.25rem; padding: 1em; }
  .cq-modal { padding: 1.5rem; margin-inline: 0; border-radius: 16px; }
  .faq { padding: 3rem 0; }
  .projects { padding: 3rem 0; }
  .experience-banner__badge { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .projects__capsules { gap: 0.5rem; }
  .project-card__cover { aspect-ratio: 4/3; }
  .navbar__inner { height: 60px; }
}

@media (min-width: 1024px) {
  .tools-rail__inner { padding-inline: 2.5rem; }
}

/* ── 23. SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(180,227,50,.4); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(180,227,50,.65); }

/* ── 24. SELECTION ── */
::selection { background: rgba(180,227,50,.25); color: #fff; }

/* ================================================
   COTIZAR MODAL – Premium Contact Form
   ================================================ */

/* Overlay */
.cq-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  overflow-y: auto;
}

.cq-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.cq-overlay[hidden] {
  display: grid !important;
  opacity: 0;
  pointer-events: none;
}

/* Panel */
.cq-modal {
  position: relative;
  width: 100%;
  max-width: 760px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(16,17,19,.97), rgba(11,12,14,.98));
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.06);
  transform: translateY(16px) scale(.97);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  margin: auto;
}

.cq-overlay:not([hidden]) .cq-modal {
  transform: translateY(0) scale(1);
}

/* Top glow line */
.cq-topline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg, transparent 5%, var(--brand) 40%, rgba(180,227,50,.5) 60%, transparent 95%);
  box-shadow: 0 0 20px rgba(180,227,50,.45);
}

/* Header */
.cq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.cq-header__right {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}

/* Badge */
.cq-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .22em .75em;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(180,227,50,.08);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .65rem;
}

.cq-badge__dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: var(--brand);
  animation: badgePulse 2s ease-in-out infinite;
}

.cq-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .4rem;
}

.cq-sub {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Language toggle */
.cq-lang {
  display: flex;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow: hidden;
}

.cq-lang__btn {
  padding: .32em .7em;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-faint);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
  font-family: var(--font);
}

.cq-lang__btn:hover { color: var(--text); background: rgba(255,255,255,.07); }

.cq-lang__btn--active {
  background: rgba(180,227,50,.15);
  color: var(--brand);
}

/* Close button */
.cq-close {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: background var(--transition);
  flex-shrink: 0;
}

.cq-close:hover { background: rgba(255,255,255,.12); }

.cq-close span {
  display: block;
  position: absolute;
  width: 16px; height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
}

.cq-close span:first-child { transform: rotate(45deg); }
.cq-close span:last-child  { transform: rotate(-45deg); }

/* Grid Layout for new Estimator */
.cq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .cq-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
  }
}

.cq-col {
  display: flex;
  flex-direction: column;
}

.cq-module-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background var(--transition), border-color var(--transition);
}

.cq-module-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(180,227,50,0.3);
}

.cq-module-item input {
  margin-right: 0.8rem;
  accent-color: var(--brand);
  width: 1.1rem; height: 1.1rem;
}

.cq-module-item span {
  font-size: 0.9rem;
  color: var(--text);
  flex-grow: 1;
}

.cq-module-item .cq-price {
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  flex-grow: 0;
}

.cq-extra-sections {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .75rem .9rem;
  margin-bottom: .6rem;
  background: rgba(255,255,255,.03);
}

.cq-extra-sections__label {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .55rem;
}

.cq-extra-sections__controls {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.cq-extra-sections__btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.cq-extra-sections__value {
  min-width: 2ch;
  text-align: center;
  color: var(--brand);
  font-weight: 800;
}

/* Form */
.cq-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) { .cq-row { grid-template-columns: 1fr; } }

.cq-field { display: flex; flex-direction: column; gap: .35rem; }

.cq-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}

.cq-label-hint {
  font-weight: 400;
  color: var(--text-faint);
}

/* Inputs & Textarea */
.cq-input,
.cq-textarea,
.cq-select {
  width: 100%;
  padding: .7em 1em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: var(--font);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.cq-input::placeholder,
.cq-textarea::placeholder { color: var(--text-faint); }

.cq-input:hover, .cq-textarea:hover, .cq-select:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.cq-input:focus, .cq-textarea:focus, .cq-select:focus {
  border-color: rgba(180,227,50,.55);
  background: rgba(180,227,50,.04);
  box-shadow: 0 0 0 3px rgba(180,227,50,.12);
}

.cq-input.invalid, .cq-textarea.invalid, .cq-select.invalid {
  border-color: rgba(255,80,80,.55);
  box-shadow: 0 0 0 3px rgba(255,80,80,.10);
}

.cq-textarea { resize: vertical; min-height: 110px; }

/* Select */
.cq-select-wrap { position: relative; }
.cq-select { padding-right: 2.2em; cursor: pointer; }
.cq-select option { background: #161718; color: var(--text); }
.cq-select-arrow {
  position: absolute;
  right: .85em; top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  color: var(--text-faint);
  pointer-events: none;
}

/* Character counter */
.cq-char-count {
  font-size: .7rem;
  color: var(--text-faint);
  align-self: flex-end;
  margin-top: -.2rem;
}

/* Error */
.cq-error {
  font-size: .72rem;
  color: #ff6b6b;
  min-height: .9em;
  transition: opacity .2s;
}

/* Project type chips */
.cq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cq-chip {
  padding: .4em 1em;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.7);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
}

.cq-chip:hover {
  border-color: rgba(180,227,50,.4);
  color: #fff;
}

.cq-chip--active {
  background: rgba(180,227,50,.15);
  border-color: rgba(180,227,50,.6);
  color: var(--brand);
  box-shadow: 0 0 0 3px rgba(180,227,50,.12);
}

/* File drop zone */
.cq-drop {
  border: 2px dashed rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
}

.cq-drop:hover,
.cq-drop:focus,
.cq-drop.drag-over {
  border-color: rgba(180,227,50,.5);
  background: rgba(180,227,50,.04);
  outline: none;
}

.cq-drop__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  gap: .4rem;
  text-align: center;
}

.cq-drop__icon {
  width: 36px; height: 36px;
  color: var(--text-faint);
  transition: color .2s;
}

.cq-drop:hover .cq-drop__icon,
.cq-drop.drag-over .cq-drop__icon { color: var(--brand); }

.cq-drop__text {
  font-size: .85rem;
  color: var(--text-muted);
}

.cq-drop__text strong { color: var(--brand); }

.cq-drop__hint {
  font-size: .7rem;
  color: var(--text-faint);
}

/* File list */
.cq-file-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 .75rem .75rem;
}

.cq-file-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45em .75em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(180,227,50,.06);
  font-size: .78rem;
  color: rgba(255,255,255,.85);
}

.cq-file-item__name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cq-file-item__size { color: var(--text-faint); font-size: .7rem; flex-shrink: 0; }

.cq-file-item__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0 .1em;
  flex-shrink: 0;
  transition: color .15s;
}

.cq-file-item__remove:hover { color: #ff6b6b; }

/* Privacy note */
.cq-privacy {
  font-size: .72rem;
  color: var(--text-faint);
  text-align: center;
  padding: .1rem;
}

/* Action buttons */
.cq-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: .25rem;
}

@media (max-width: 480px) { .cq-actions { grid-template-columns: 1fr; } }

.cq-btn-primary,
.cq-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85em 1.4em;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  letter-spacing: .01em;
}

.cq-btn-primary:hover, .cq-btn-wa:hover { transform: translateY(-2px); }
.cq-btn-primary:active, .cq-btn-wa:active { transform: scale(.97); }

/* Email button – brand */
.cq-btn-primary {
  background: var(--brand);
  color: #141414;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 8px 28px rgba(180,227,50,.4);
}

.cq-btn-primary:hover { box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 12px 36px rgba(180,227,50,.6); }

.cq-btn-primary svg { width: 18px; height: 18px; }

/* WhatsApp button */
.cq-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}

.cq-btn-wa:hover { filter: brightness(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
.cq-btn-wa svg { width: 20px; height: 20px; }

/* Success state */
.cq-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(180,227,50,.3);
  background: rgba(180,227,50,.08);
  margin-top: .5rem;
}

.cq-success svg {
  width: 28px; height: 28px;
  color: var(--brand);
  flex-shrink: 0;
}

.cq-success p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.cq-success[hidden] { display: none !important; }

/* Client logos behavior:
   - Partum + Indusecc + MillerKnoll keep original color
   - Related brands appear inside MillerKnoll panel in white
*/
.clients .client-card img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(28px, 5vw, 46px);
  object-fit: contain;
  transition: opacity var(--transition), filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.clients .client-card {
  cursor: default;
}

.clients a.client-card {
  cursor: pointer;
}

.clients .client-card img.client-color {
  filter: none !important;
  opacity: 1 !important;
}

.clients .client-card img.client-white {
  filter: grayscale(1) brightness(0) invert(1) contrast(1.08) !important;
  opacity: 1 !important;
}

.clients .clients__partners .client-card img:not(.client-color) {
  filter: grayscale(1) brightness(0) invert(1) contrast(1.08);
  opacity: 1;
}

.clients .clients__partners .client-card:hover img:not(.client-color),
.clients .clients__partners .client-card:focus-visible img:not(.client-color) {
  opacity: 1;
  transform: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .clients .clients__partners .client-card img:not(.client-color) { opacity: .95; }
  .clients .client-card {
    min-height: 88px;
    aspect-ratio: auto;
  }
  .clients .client-card img {
    max-height: 38px;
    max-width: 88%;
  }
  .clients.clients--expanded .clients__partners-wrap {
    max-height: 980px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients .client-card img {
    transition: none;
  }
}

/* ── 20. LUMINA AI CHATBOT ── */
.lumina-fab {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  color: #141414;
  box-shadow: 0 12px 32px rgba(180,227,50,.35), 0 0 0 2px rgba(180,227,50,0.2) inset;
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
}
.lumina-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(180,227,50,.5), 0 0 0 2px rgba(180,227,50,0.4) inset;
}

.lumina-fab.is-app-mode,
.a11y-module.is-app-mode .a11y-fab {
  bottom: 1rem !important;
  right: 1rem !important;
  transform: none !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.38);
}

.lumina-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(14, 15, 16, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 14px;
  border-bottom-right-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  animation: floatTooltip 5s ease-in-out infinite, slideIn 0.5s 1s forwards cubic-bezier(.175,.885,.32,1.275);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
@keyframes slideIn {
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@keyframes floatTooltip {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -3px; }
}

.lumina-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(14, 15, 16, 0.9);
  border-top: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
}

body.in-fast-track .lumina-fab__tooltip {
  display: none;
}

.lumina-fab__icon {
  width: 28px; height: 28px;
}
.lumina-fab__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: fabSpin 4s linear infinite;
  z-index: -1;
  opacity: .5;
}
@keyframes fabSpin { 100% { transform: rotate(360deg); } }

.lumina-fab__ping {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(3); opacity: 0; }
}

/* Chat Panel */
.lumina-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 1100;
  width: calc(100vw - 3rem);
  max-width: 380px;
  height: 600px;
  max-height: calc(100vh - 8rem);
  border-radius: 24px;
  background: rgba(14, 15, 16, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(180,227,50,.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(.95) translateZ(0);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.lumina-panel:not([hidden]) {
  transform: translateY(0) scale(1) translateZ(0);
  opacity: 1;
  pointer-events: all;
}
.lumina-topline {
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.lumina-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.2);
}
.lumina-header__left {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.lumina-avatar {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(180,227,50,.15);
  color: var(--brand);
  border: 1px solid rgba(180,227,50,.3);
}
.lumina-avatar svg { width: 22px; height: 22px; }
.lumina-header__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.lumina-header__status {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--text-faint);
  margin-top: .1rem;
}
.lumina-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}
.lumina-close {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  transition: background .2s;
}
.lumina-close:hover { background: rgba(255,255,255,.1); }
.lumina-close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: #fff;
  transition: transform .2s;
}
.lumina-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.lumina-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.lumina-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
}
.lumina-messages::-webkit-scrollbar { width: 6px; }
.lumina-messages::-webkit-scrollbar-track { background: transparent; }
.lumina-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }

.lumina-msg {
  max-width: 85%;
  padding: .85rem 1.15rem;
  border-radius: 16px;
  font-size: .95rem;
  line-height: 1.5;
  animation: msgPop .3s cubic-bezier(.175,.885,.32,1.275) forwards;
  transform-origin: bottom left;
}
@keyframes msgPop {
  0% { opacity: 0; transform: scale(.9) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.lumina-msg p { margin-bottom: .5rem; }
.lumina-msg p:last-child { margin-bottom: 0; }
.lumina-msg strong { color: #fff; font-weight: 600; }
.lumina-msg a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

.lumina-msg--ai {
  align-self: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  color: var(--text-muted);
  border-bottom-left-radius: 4px;
}
.lumina-msg--user {
  align-self: flex-end;
  background: var(--brand);
  color: #141414;
  border-bottom-right-radius: 4px;
  transform-origin: bottom right;
}

/* Typing indicator */
.lumina-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: .85rem 1.15rem;
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: max-content;
}
.lumina-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: typing 1.4s infinite cubic-bezier(.2,.8,.2,1);
}
.lumina-typing span:nth-child(2) { animation-delay: .2s; }
.lumina-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-4px); opacity: 1; background: var(--brand); }
}

.lumina-chips {
  padding: 0 1.5rem 1rem;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.lumina-chips::-webkit-scrollbar { display: none; }
.lumina-chips.is-dragging { cursor: grabbing; }
.lumina-chip {
  flex-shrink: 0;
  padding: .6rem .85rem;
  border-radius: 12px; /* Better for multiline than 99px pill */
  background: rgba(180,227,50,.1);
  border: 1px solid rgba(180,227,50,.3);
  color: var(--brand);
  font-size: .85rem;
  transition: background .2s, color .2s;
  white-space: normal;
  text-align: left;
  max-width: 220px;
  line-height: 1.35;
  scroll-snap-align: start;
}
.lumina-chip:hover {
  background: var(--brand);
  color: #141414;
}

.lumina-input-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.06);
}
.lumina-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: .95rem;
  resize: none;
  min-height: 24px;
  max-height: 120px;
}
.lumina-input:focus { outline: none; }
.lumina-input::placeholder { color: var(--text-faint); }

.lumina-send {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(180,227,50,.2);
  color: var(--brand);
  transition: transform .2s, background .2s, color .2s;
}
.lumina-send:hover {
  background: var(--brand);
  color: #141414;
}
.lumina-send svg { width: 18px; height: 18px; }
.lumina-send:disabled {
  opacity: .5; pointer-events: none;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.3);
}

.lumina-footer-note {
  text-align: center;
  font-size: .7rem;
  color: var(--text-faint);
  padding: 0 1.5rem .5rem;
  background: rgba(0,0,0,.3);
}

@media (max-width: 480px) {
  .lumina-panel {
    left: .45rem;
    right: .45rem;
    bottom: calc(env(safe-area-inset-bottom) + .45rem);
    width: auto;
    max-width: none;
    height: min(76dvh, 560px);
    max-height: min(76dvh, 560px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }
  .lumina-messages { flex: 1; min-height: 0; }
  .lumina-fab {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: 1rem;
  }
  .lumina-chips {
    padding: 0 1rem .85rem;
    gap: .55rem;
  }
  .lumina-chip {
    min-width: 150px;
    max-width: 78vw;
    font-size: .82rem;
  }
}

/* ── 20. LANG TOGGLES ── */
.navbar__lang {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  padding: 2px;
}
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.lang-btn {
  padding: 0.3em 0.8em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 18px;
  transition: all var(--transition);
}
.mobile-menu__lang .lang-btn {
  font-size: 1rem;
  padding: 0.5em 1.5em;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn:hover {
  color: var(--text);
}
.lang-btn.active {
  background: var(--brand);
  color: #141414;
  box-shadow: 0 2px 10px rgba(180,227,50,0.3);
}

/* ── 21. EXPERIENCE BANNER ── */
.experience-banner {
  padding: 2rem 0;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(180,227,50,0.05), rgba(255,255,255,0.02));
}
.experience-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.experience-banner__text h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.experience-banner__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
}
.experience-banner__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--brand-dim);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
}
.experience-banner__badge span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.experience-banner__badge small {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* ── 22. FAQ SECTION ── */
.faq {
  padding: 5rem 0;
  position: relative;
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  align-items: center;
}
.faq__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}
.faq__search-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.faq__search {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.faq__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition);
}
.faq__item[open] {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
}
.faq__q {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none; /* Hide standard arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform var(--transition);
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq__a strong {
  color: var(--text);
}
.faq__currency, .faq__timezone {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}
.faq__curr-result, .faq__tz-result {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 500;
}
.faq__empty {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(180,227,50,0.05);
  border: 1px dashed var(--brand-dim);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 2rem auto 0;
}
.faq__empty p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* ── 23. ACCESSIBILITY MODULE ── */
.a11y-module {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 90;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.a11y-fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(30,30,30,0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: background var(--transition), transform var(--transition);
}
.a11y-fab:hover {
  background: rgba(50,50,50,0.9);
  transform: scale(1.05);
}

body.in-fast-track .a11y-menu {
  display: none !important;
}
.a11y-fab svg {
  width: 24px;
  height: 24px;
}
.a11y-menu {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 0;
  width: 240px;
  background: rgba(16,17,18,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.a11y-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.a11y-menu h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.a11y-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.a11y-option:last-child { margin-bottom: 0; }

/* Switch Toggle */
.a11y-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.a11y-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.a11y-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255,255,255,0.1);
  transition: .4s;
  border-radius: 34px;
}
.a11y-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
.a11y-switch input:checked + .a11y-slider {
  background-color: var(--brand);
}
.a11y-switch input:checked + .a11y-slider:before {
  transform: translateX(16px);
  background: #141414;
}

.app-actions-dock {
  display: none;
}

@media (max-width: 860px) {
  body.lumina-open .app-actions-dock {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
  }

  .lumina-panel {
    left: .6rem;
    right: .6rem;
    bottom: calc(env(safe-area-inset-bottom) + .65rem);
    width: auto;
    max-width: none;
    height: min(72dvh, 620px);
    max-height: min(72dvh, 620px);
    border-radius: 18px;
    transform-origin: bottom center;
  }

  .app-actions-dock {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom) + .7rem);
    z-index: 1002;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    width: min(92vw, 360px);
    padding: .45rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(8,10,12,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
  }

  .app-actions-dock__btn {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #f4f7f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-size: .83rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  }

  .app-actions-dock__btn i {
    color: var(--brand);
    font-size: .9rem;
  }

  .app-actions-dock__btn:hover,
  .app-actions-dock__btn:focus-visible {
    border-color: rgba(180,227,50,.55);
    background: rgba(180,227,50,.14);
    color: #fff;
    transform: translateY(-1px);
  }

  .app-actions-dock__btn:hover i,
  .app-actions-dock__btn:focus-visible i {
    color: #d5f15c;
  }

  .lumina-fab {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(.92) !important;
  }

  .a11y-module {
    left: auto;
    right: .8rem;
    bottom: calc(env(safe-area-inset-bottom) + 4.2rem);
    z-index: 1110;
  }

  .a11y-fab {
    display: none;
  }

  .a11y-menu {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: calc(env(safe-area-inset-bottom) + 4.8rem);
    width: auto;
    max-width: none;
    transform-origin: bottom center;
    z-index: 1120;
    pointer-events: auto;
  }

  body.in-fast-track .app-actions-dock {
    opacity: .96;
    transform: translateX(-50%) translateY(0);
  }

}

@media (max-width: 600px) {
  .a11y-module {
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: 1rem;
  }
}

@media (max-width: 860px) {
  body.in-fast-track .a11y-menu {
    display: block !important;
  }
}

/* ── 24. ACCESSIBILITY OVERRIDES ── */
body.a11y-large-text {
  font-size: 18px; /* Bump base font size */
}
body.a11y-large-text .btn { font-size: 1.1rem; }
body.a11y-large-text p { font-size: 1.1rem; }
body.a11y-large-text .cq-input, body.a11y-large-text .cq-textarea { font-size: 1.1rem; }

body.a11y-high-contrast {
  --bg: #000000;
  --bg-surface: #000000;
  --text: #FFFFFF;
  --text-muted: #FFFFFF;
  --text-faint: #FFFFFF;
  --border: #FFFFFF;
  --border-hover: var(--brand);
}
body.a11y-high-contrast .btn-ghost { border-color: #fff; background: transparent; color: #fff; }

body.a11y-reduced-motion *,
body.a11y-reduced-motion *::before,
body.a11y-reduced-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
body.a11y-reduced-motion .aurora, 
body.a11y-reduced-motion .glow, 
body.a11y-reduced-motion .trail, 
body.a11y-reduced-motion .cta__canvas {
  display: none !important;
}

/* ── 25. FLOATING BUTTONS HIDER (FOOTER INTERSECTION) ── */
.hide-floating {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
}

/* ── 25. PROJECT CAPSULES ── */
.projects__capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}
.project-capsule {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
}
.project-capsule:hover {
  background: rgba(180,227,50,0.1);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.project-capsule__info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.project-capsule__info small {
  font-size: 0.75rem;
  color: var(--brand-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-capsule__icon {
  width: 16px;
  height: 16px;
  color: var(--brand);
  transition: transform var(--transition);
}
.project-capsule:hover .project-capsule__icon {
  transform: translateX(3px);
}

/* ── 26. LET'S TALK MODAL ── */
.lt-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lt-overlay[hidden] {
  display: none !important;
}

.lt-modal {
  width: min(100%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(20, 22, 25, 0.98), rgba(13, 15, 17, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 1rem;
}

.lt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.lt-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
}

.lt-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.lt-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
}

.lt-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.lt-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.lt-form {
  display: grid;
  gap: 0.7rem;
}

.lt-field {
  display: grid;
  gap: 0.35rem;
}

.lt-field span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.lt-field input,
.lt-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.8rem;
}

.lt-field textarea {
  min-height: 90px;
  resize: vertical;
}

.lt-contact {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.lt-contact a {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.88rem;
}
