:root {
  --black: #050505;
  --surface: #0c0c0f;
  --surface-2: #12121a;
  --surface-glass: rgba(18, 18, 26, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(197, 164, 110, 0.45);
  --muted: #8b8b9a;
  --text: #e4e4ec;
  --white: #fff;
  --gold: #c5a46e;
  --gold-light: #e0c992;
  --purple: #7c5cff;
  --purple-soft: rgba(124, 92, 255, 0.15);
  --green: #45a557;
  --radius: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(124, 92, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(197, 164, 110, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(124, 92, 255, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 4.5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7.5rem 0; } }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.label-dark { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.display {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600; line-height: 1; letter-spacing: -.045em; color: var(--white);
}
.heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -.035em; color: var(--white);
}
.heading-sm { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; color: var(--white); }
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head .heading { margin-top: .75rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Glass & cards */
.glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s var(--ease);
}
.card-hover:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 92, 255, 0.06);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s, border-color .35s;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black); box-shadow: 0 8px 32px rgba(197, 164, 110, 0.25);
}
.btn-gold:hover { box-shadow: 0 12px 40px rgba(197, 164, 110, 0.4); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255, 255, 255, 0.06); color: var(--white); border-color: var(--border);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

.badge-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 24px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); font-weight: 600; font-size: 14px;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.badge-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(197, 164, 110, 0.35); }
.badge-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center; transition: transform .35s var(--ease);
}
.badge-btn:hover .badge-icon { transform: rotate(45deg); }

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--purple-soft); border: 1px solid rgba(124, 92, 255, 0.3);
  font-size: 12px; font-weight: 600; color: var(--white);
}
.pill-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.2); } }

.input {
  width: 100%; padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197, 164, 110, 0.15); }

/* Header — AgencyAI glass nav */
.site-header {
  --nav-item-h: 42px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: max(1.125rem, env(safe-area-inset-top)) 0 0;
  transition: padding .4s var(--ease);
}
.site-header.scrolled { padding-top: max(0.75rem, env(safe-area-inset-top)); }
.site-header .container {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
@media (min-width: 768px) {
  .site-header .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .site-header .container { padding-left: 2rem; padding-right: 2rem; }
}
.nav-shell {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: calc(var(--nav-item-h) + 20px);
  padding: 10px 16px 10px 20px;
  border-radius: 999px;
  background: rgba(12, 12, 18, 0.52);
  backdrop-filter: blur(40px) saturate(165%);
  -webkit-backdrop-filter: blur(40px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.22),
    0 12px 40px rgba(0, 0, 0, 0.16);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  isolation: isolate;
}
.nav-shell::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(124, 92, 255, 0.04) 100%
  );
}
.nav-shell::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(197, 164, 110, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media (min-width: 768px) {
  .nav-shell { padding: 12px 20px 12px 24px; gap: 1.25rem; min-height: calc(var(--nav-item-h) + 24px); }
}
@media (min-width: 1024px) {
  .nav-shell { padding: 12px 24px 12px 28px; }
}
.site-header.scrolled .nav-shell {
  background: rgba(10, 10, 14, 0.78);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.42),
    0 20px 56px rgba(0, 0, 0, 0.28);
}
.logo-link,
.nav-desktop,
.header-actions { position: relative; z-index: 1; }
.logo-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-item-h);
  line-height: 0;
}
.site-header .logo-img {
  height: 32px;
  width: auto;
  max-width: min(52vw, 240px);
  object-fit: contain;
  object-position: center;
  transition: transform .35s var(--ease);
}
@media (min-width: 768px) { .site-header .logo-img { height: 34px; max-width: 280px; } }
@media (min-width: 1024px) { .site-header .logo-img { height: 36px; } }
.logo-md { height: 44px; margin-bottom: 1rem; }
.logo-link:hover .logo-img { transform: scale(1.03); }
.nav-desktop {
  display: none;
  align-items: center;
  gap: .15rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-desktop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-item-h);
  padding: 0 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--muted);
  transition: color .25s, background .25s;
}
.nav-desktop a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav-desktop a.active { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.header-actions .btn-sm {
  height: var(--nav-item-h);
  padding: 0 22px;
  line-height: 1;
  white-space: nowrap;
}
.menu-btn {
  width: var(--nav-item-h);
  height: var(--nav-item-h);
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, transform .25s;
}
.menu-btn:hover { border-color: var(--gold); }
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--nav-item-h);
  padding: 1.5rem 0;
}
.mobile-menu-top .logo-img { height: 30px; max-width: 200px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } .menu-btn { display: none; } }
@media (max-width: 767px) { .hide-mobile { display: none; } }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); }
.mobile-menu.open { pointer-events: auto; opacity: 1; }
.mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(8px); }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; width: min(100%, 360px); height: 100%;
  overflow-y: auto; transform: translateX(100%);
  background: var(--surface); border-left: 1px solid var(--border);
  transition: transform .45s var(--ease);
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 16px 0; border-bottom: 1px solid var(--border);
  font-size: 1.35rem; font-weight: 600; color: var(--white);
  transition: color .25s, padding-left .25s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 12px; }

/* Hero — AgencyAI style */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 7rem 0 3rem; overflow: hidden; text-align: center;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 4rem; } }
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 70%, var(--black) 100%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.2), transparent 70%);
  top: 10%; left: 50%; transform: translateX(-50%); filter: blur(60px); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero .display { margin: 1.25rem 0; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; width: 100%; }
.hero-cta .btn { min-width: min(100%, 280px); }
@media (min-width: 480px) { .hero-cta .btn { min-width: auto; } }

.trust-strip { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.trust-strip p { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: 1.25rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.trust-logos span {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.35);
  transition: color .3s; cursor: default;
}
.trust-logos span:hover { color: var(--gold); }

/* Bento services grid */
.bento { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .span-2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento .wide { grid-column: span 2; }
}
.bento-card {
  padding: 2rem; position: relative; overflow: hidden;
  min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--purple-soft); border: 1px solid rgba(124, 92, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.25rem;
  transition: transform .4s var(--ease), background .35s;
}
.bento-card:hover .icon { transform: scale(1.08) rotate(-4deg); background: rgba(197, 164, 110, 0.15); }
.bento-card h3 { margin-bottom: .5rem; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.bento-card .arrow {
  position: absolute; top: 1.5rem; right: 1.5rem; opacity: 0;
  transform: translate(-8px, 8px); transition: opacity .35s, transform .35s var(--ease);
  color: var(--gold); font-size: 1.25rem;
}
.bento-card:hover .arrow { opacity: 1; transform: translate(0, 0); }

/* Process steps */
.process-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card { padding: 1.75rem; }
.process-num {
  font-size: 3rem; font-weight: 700; line-height: 1;
  background: linear-gradient(180deg, var(--gold), transparent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--white); }
.process-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Project cards — large AgencyAI style */
.work-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card { overflow: hidden; }
.work-card .work-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.work-card .work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-img img { transform: scale(1.06); }
.work-card .work-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent 50%);
}
.work-body { padding: 1.75rem; }
.work-body .tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0; }
.mini-tag {
  font-size: 11px; padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--muted);
}

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  padding: 3rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(197, 164, 110, 0.06));
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--gold); letter-spacing: -.03em; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; }

/* Pricing */
.pricing-grid { display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card { padding: 2rem; display: flex; flex-direction: column; }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(197, 164, 110, 0.08), var(--surface-2));
  box-shadow: 0 20px 60px rgba(197, 164, 110, 0.1);
}
@media (min-width: 900px) { .price-card.featured { transform: scale(1.02); } }
.price-card .price { font-size: 2.5rem; font-weight: 700; color: var(--white); margin: 1rem 0; }
.price-card .price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-card ul { flex: 1; margin: 1rem 0 1.5rem; }
.price-card li { padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.price-card li::before { content: '✓ '; color: var(--gold); }

/* Testimonials marquee */
.testimonial-marquee { overflow: hidden; padding: 1rem 0; }
.testimonial-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: marquee 45s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-card {
  width: 340px; flex-shrink: 0; padding: 1.75rem;
}
.testimonial-card p { font-size: 14px; line-height: 1.7; margin-bottom: 1.25rem; color: var(--text); }
.testimonial-card .author { font-weight: 600; color: var(--gold); font-size: 14px; }
.testimonial-card .role { font-size: 12px; color: var(--muted); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 1.35rem 0;
  background: none; border: none; color: var(--white); font: inherit;
  font-size: 1.05rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .icon { transition: transform .35s var(--ease); color: var(--gold); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .35s;
  color: var(--muted); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

/* CTA band */
.cta-band {
  padding: 4rem 2rem; border-radius: var(--radius); text-align: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(197, 164, 110, 0.1));
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 92, 255, 0.15), transparent 60%);
  pointer-events: none;
}

/* Page hero */
.page-hero { padding: 7.5rem 0 3rem; text-align: center; }
@media (min-width: 768px) { .page-hero { padding: 9rem 0 4rem; } }
.page-hero .heading { margin-top: .75rem; }
.page-hero .hero-sub { margin: 1rem auto 0; }

/* Grids */
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding-top: 5rem; margin-top: 2rem; }
.footer-cta { display: flex; flex-direction: column; gap: 2rem; padding-bottom: 4rem; }
.footer-cta h2 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 600; color: var(--white); line-height: 1; letter-spacing: -.04em; }
@media (min-width: 768px) { .footer-cta { flex-direction: row; align-items: end; justify-content: space-between; } }
.footer-grid { display: grid; gap: 2.5rem; padding: 3rem 0; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .25s, transform .25s; display: inline-block; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-links li { margin-bottom: .65rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }

/* Chat */
.chat-fab {
  position: fixed; bottom: max(1.25rem, env(safe-area-inset-bottom)); right: max(1.25rem, env(safe-area-inset-right)); z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 2px solid var(--gold); color: var(--gold);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
  animation: fabPulse 3s ease-in-out infinite;
}
.chat-fab:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(197, 164, 110, 0.35); animation: none; }
.chat-fab.open { background: var(--gold); color: var(--black); animation: none; }
.chat-fab-icon { display: flex; align-items: center; justify-content: center; line-height: 1; }
.chat-fab-close { display: none; font-size: 1.25rem; font-weight: 600; }
.chat-fab.open .chat-fab-open { display: none; }
.chat-fab.open .chat-fab-close { display: flex; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,.5); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 8px rgba(197, 164, 110, 0.12); }
}
.chat-panel {
  position: fixed; bottom: calc(5.25rem + env(safe-area-inset-bottom)); right: max(1.25rem, env(safe-area-inset-right)); z-index: 60;
  width: min(380px, calc(100vw - 2.5rem));
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  display: none; flex-direction: column; max-height: min(440px, calc(100svh - 8rem));
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform-origin: bottom right;
}
.chat-panel.open { display: flex; animation: chatSlideUp .45s var(--ease); }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: none; } }
.chat-header {
  display: flex; align-items: center; gap: .65rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  color: var(--gold); font-weight: 600;
}
.chat-header-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple-soft); border: 1px solid rgba(124, 92, 255, 0.35);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.chat-header button {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: color .25s, border-color .25s;
}
.chat-header button:hover { color: var(--white); border-color: var(--gold); }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .75rem; min-height: 220px; }
.chat-msg { padding: .85rem 1rem; border-radius: 14px; font-size: 13px; line-height: 1.55; max-width: 88%; }
.chat-msg.bot { background: rgba(255,255,255,0.05); align-self: flex-start; }
.chat-msg.user { background: var(--gold); color: var(--black); align-self: flex-end; }
.chat-form { display: flex; gap: .5rem; padding: 1rem; border-top: 1px solid var(--border); }
.chat-form input { flex: 1; }
.chat-form button { padding: 10px 18px; border-radius: 100px; border: none; background: var(--gold); color: var(--black); font-weight: 600; cursor: pointer; }

/* Configurator */
.steps { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; background: var(--surface); color: var(--muted); transition: .35s; }
.step-dot.active { background: var(--purple-soft); color: var(--white); border: 1px solid rgba(124,92,255,.4); }
.step-dot.done { background: var(--gold); color: var(--black); }
.service-list { max-height: 480px; overflow-y: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.service-item { padding: 1rem 1.25rem; cursor: pointer; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between; transition: background .25s, padding-left .25s; }
@media (max-width: 479px) {
  .service-item { flex-direction: column; gap: .5rem; }
  .service-item > div:last-child { text-align: left !important; }
}
.quote-line { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.quote-line span:first-child { flex: 1; min-width: 0; }
.quote-line span:last-child { flex-shrink: 0; font-weight: 600; color: var(--white); }
.quote-total { margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--gold); font-size: 1.35rem; font-weight: 700; color: var(--gold); text-align: right; }
.service-item:hover { background: rgba(255,255,255,0.03); padding-left: 1.5rem; }
.service-item.selected { background: rgba(197,164,110,0.08); border-left: 3px solid var(--gold); }
.filter-tabs {
  display: flex; flex-wrap: nowrap; gap: .5rem; margin-bottom: 1rem;
  overflow-x: auto; padding-bottom: .35rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .filter-tabs { flex-wrap: wrap; overflow: visible; } }
.filter-tabs button { flex-shrink: 0; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; transition: .25s; }
.filter-tabs button:hover, .filter-tabs button.active { border-color: var(--gold); color: var(--gold); background: rgba(197,164,110,0.08); }
.hidden { display: none !important; }
.alert-success { padding: 1rem; border-radius: var(--radius-sm); background: rgba(69,165,87,.12); border: 1px solid var(--green); color: var(--green); }
.alert-error { padding: 1rem; border-radius: var(--radius-sm); background: rgba(255,80,80,.1); border: 1px solid #f55; color: #f88; }

/* Scroll reveal animations */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Service pillar pages */
.service-pillar { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border); }
@media (min-width: 1024px) { .service-pillar { grid-template-columns: 1fr 1fr; } }
.service-pillar img { border-radius: var(--radius); width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s var(--ease); }
.service-pillar:hover img { transform: scale(1.02); }

.about-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-split { grid-template-columns: 1fr 1fr; } }
.about-img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* Extra polish — alignment, mobile, motion */
.pill-badge { max-width: 100%; text-align: left; flex-wrap: wrap; justify-content: center; }
.hero .pill-badge { margin: 0 auto; }
.section-head { margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-head { margin-bottom: 3.5rem; } }
.stats-row { padding: 2rem 1.25rem; }
.trust-logos { gap: 1rem 1.5rem; }
.testimonial-card { width: min(340px, calc(100vw - 3rem)); }
.cta-band { padding: 3rem 1.5rem; }
.cta-band .btn { min-width: min(100%, 240px); }
.footer-desc { margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-cta .badge-btn { align-self: flex-start; }
.service-pillar > div { min-width: 0; }
.service-pillar .btn { margin-top: .25rem; }

body.is-loaded .hero .reveal.visible { animation: heroFadeUp .8s var(--ease) both; }
body.is-loaded .hero .reveal-delay-1.visible { animation-delay: .1s; }
body.is-loaded .hero .reveal-delay-2.visible { animation-delay: .2s; }
body.is-loaded .hero .reveal-delay-3.visible { animation-delay: .3s; }
body.is-loaded .hero .reveal-delay-4.visible { animation-delay: .4s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.reveal-scale {
  opacity: 0; transform: scale(0.96);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: none; }

.hero-glow { animation: glowDrift 12s ease-in-out infinite alternate; }
@keyframes glowDrift {
  from { transform: translateX(-50%) translateY(0); opacity: .85; }
  to { transform: translateX(-45%) translateY(24px); opacity: 1; }
}

.chat-msg { animation: msgIn .35s var(--ease); }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

#step2 .grid-2 { align-items: start; }
#step2 form .btn { white-space: nowrap; }
@media (max-width: 767px) {
  #step2 form > div[style*="flex"] { flex-direction: column; }
  #step2 form .btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .process-card { padding: 1.35rem; }
  .bento-card { min-height: 200px; padding: 1.5rem; }
  .display { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
  .testimonial-track { animation: none; }
}