*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #F97316;
  --orange-light: #FBBF24;
  --black: #000000;
  --near-black: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --text: #ffffff;
  --text-secondary: rgba(255,255,255,0.55);
  --text-tertiary: rgba(255,255,255,0.32);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-tap-highlight-color: transparent; }
:focus:not(:focus-visible) { outline: none !important; box-shadow: none !important; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #fff; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
html { scrollbar-width: thin; scrollbar-color: #fff transparent; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.navbar-banner {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.navbar-banner:hover { background: #ea6a0a; }
.navbar-banner-text { letter-spacing: 0.01em; }
.navbar-banner-link { display: flex; align-items: center; gap: 4px; font-weight: 600; opacity: 0.85; }
.navbar-banner-link svg { width: 14px; height: 14px; }

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 4.5rem;
  gap: 0.5rem;
  transition: padding 0.3s cubic-bezier(0.16,1,0.3,1);
}

.navbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.navbar-logo svg { width: 32px; height: 32px; }
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-name { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: 2px; }
.navbar-logo-sub { font-size: 7px; letter-spacing: 5px; color: var(--orange); text-transform: uppercase; margin-top: 3px; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  border-radius: 9999px;
  transition:
    max-width 0.3s cubic-bezier(0.16,1,0.3,1),
    background 0.3s cubic-bezier(0.16,1,0.3,1),
    padding 0.3s cubic-bezier(0.16,1,0.3,1),
    gap 0.3s cubic-bezier(0.16,1,0.3,1),
    backdrop-filter 0.3s cubic-bezier(0.16,1,0.3,1);
  background: transparent;
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.navbar-link:hover { color: var(--text); }
.navbar-link.active { color: var(--text); }

.navbar-login {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.navbar-login:hover { color: var(--text); }
.navbar-login.active { color: var(--text); }

.navbar-cta {
  background: var(--text);
  color: var(--black) !important;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, padding 0.3s cubic-bezier(0.16,1,0.3,1), transform 150ms ease-out;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-cta:hover { background: rgba(255,255,255,0.88); }
.navbar-cta:active { transform: scale(0.96); }

.navbar-wrapper.is-scrolled { padding: 0.75rem 4.5rem; }
.navbar-wrapper.is-scrolled .navbar-logo { transform: translate(-50%, -50%) scale(0.78); }
.navbar-wrapper.is-scrolled .navbar-inner {
  background: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 0.375rem 0.375rem 0.375rem 1.5rem;
  max-width: 52rem;
  gap: 3rem;
}
.navbar-wrapper.is-scrolled .navbar-cta { padding: 0.5rem 1rem; }

.navbar-hamburger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='2' fill='white'/%3E%3Ccircle cx='10' cy='3' r='2' fill='white'/%3E%3Ccircle cx='17' cy='3' r='2' fill='white'/%3E%3Ccircle cx='3' cy='10' r='2' fill='white'/%3E%3Ccircle cx='10' cy='10' r='2' fill='white'/%3E%3Ccircle cx='17' cy='10' r='2' fill='white'/%3E%3Ccircle cx='3' cy='17' r='2' fill='white'/%3E%3Ccircle cx='10' cy='17' r='2' fill='white'/%3E%3Ccircle cx='17' cy='17' r='2' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  flex-shrink: 0;
  transition: border-color 0.2s, background-color 0.3s;
}
.navbar-wrapper.is-scrolled .navbar-hamburger {
  background-color: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.14);
}

.mobile-menu {
  position: fixed;
  top: 0; right: -90vw;
  width: 80vw; max-width: 320px;
  height: 100%;
  background: #111;
  z-index: 10000;
  display: flex; flex-direction: column;
  padding: 1.5rem;
  gap: 0;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  transition: right 0.3s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-menu-close {
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L13 13M13 1L1 13' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.mobile-menu a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu a:last-child { border-bottom: none; color: var(--orange); margin-top: 1rem; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ── HERO (home page only) ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 4.5rem 100px;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-grid-fade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, var(--black) 100%);
  pointer-events: none;
}

.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 65%); top: -180px; right: -120px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 65%); bottom: -80px; left: 80px; }

@keyframes esEntrance {
  from { opacity: 0; transform: translateY(-120px) rotate(calc(var(--r, 0deg) - 12deg)); }
  to   { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); }
}
@keyframes esBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(14px); }
}
.es { position: absolute; opacity: 0; animation: esEntrance 2.6s cubic-bezier(0.23,0.86,0.39,0.96) forwards; }
.es-bob { position: relative; animation: esBob 13s ease-in-out infinite; }
.es-pill {
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--pill-color, rgba(255,255,255,0.04)), transparent);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 40px 0 rgba(255,255,255,0.03);
}

.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  border-radius: 9999px; padding: 6px 16px;
  margin-bottom: 32px;
  color: var(--text-secondary); font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 720px;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--text-secondary); }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600; font-style: normal;
}

.hero p {
  color: var(--text-secondary);
  font-size: 17px; font-weight: 300;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 520px;
  letter-spacing: 0.005em;
}

.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 56px; margin-top: 80px; flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat .num { font-size: 36px; font-weight: 300; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.hero-stat .num span { color: var(--orange); }
.hero-stat .lbl { font-size: 12px; color: var(--text-tertiary); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }

#shaderCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 160px 4.5rem 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(249,115,22,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(249,115,22,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 680px;
  letter-spacing: -0.03em;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--text-secondary); }
.page-hero h1 .accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600; font-style: normal;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 16px; font-weight: 300;
  line-height: 1.8; max-width: 520px;
  margin-top: 12px;
  letter-spacing: 0.005em;
}
.page-hero-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ── TICKER ── */
.ticker {
  background: var(--near-black);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label { text-align: center; font-size: 9px; color: var(--text-tertiary); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.ticker-track { display: flex; gap: 56px; animation: tick 30s linear infinite; white-space: nowrap; will-change: transform; }
.ticker-item { color: var(--text-tertiary); font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; }
.ticker-item::before { content: '✦ '; color: var(--orange); font-size: 6px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED SECTION ── */
.section { padding: 120px 4.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 10px; font-weight: 400; letter-spacing: 4px; color: var(--orange); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--text); line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.025em; }
.section-title em { font-style: italic; color: var(--text-secondary); }
.section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.75; max-width: 500px; margin-bottom: 64px; font-weight: 300; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.step-card { background: var(--near-black); padding: 36px 28px; transition: background 0.2s; }
.step-card:hover { background: var(--surface); }
.step-num { font-size: 11px; font-weight: 400; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.step-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.svc-card { background: var(--near-black); padding: 36px 30px; transition: background 0.2s; position: relative; }
.svc-card:hover { background: var(--surface); }
.svc-icon { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px; }
.svc-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

/* Services preview "see all" row */
.section-see-all {
  display: flex; justify-content: center; margin-top: 32px;
}
.section-see-all a {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--orange); text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; transition: gap 0.2s;
}
.section-see-all a:hover { gap: 11px; }

/* ── FEATURE BAND ── */
.feature-band { background: var(--near-black); padding: 120px 4.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.flist { display: flex; flex-direction: column; gap: 1px; margin-top: 36px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.flist-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: var(--surface); transition: background 0.2s; }
.flist-item:hover { background: var(--surface-2); }
.flist-check { width: 20px; height: 20px; border: 1px solid rgba(249,115,22,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 10px; font-weight: 900; margin-top: 2px; }
.flist-text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; font-weight: 300; }
.flist-text strong { color: var(--text); font-weight: 500; }

.metrics-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 1px; overflow: hidden; }
.metric-row { background: var(--near-black); padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; }
.metric-row:first-child { border-radius: 10px 10px 0 0; }
.metric-row:last-child { border-radius: 0 0 10px 10px; }
.metric-lbl { color: var(--text-tertiary); font-size: 12px; margin-bottom: 10px; letter-spacing: 0.02em; }
.metric-bar-wrap { height: 2px; width: 160px; background: var(--border); border-radius: 2px; }
.metric-bar-fill { height: 100%; border-radius: 2px; background: var(--orange); }
.metric-val { font-size: 28px; font-weight: 300; color: var(--text); letter-spacing: -0.03em; }
.metric-val span { color: var(--orange); }

/* ── ABOUT PREVIEW (home page) ── */
.about-preview { background: var(--near-black); padding: 120px 4.5rem; border-top: 1px solid var(--border); }
.about-preview-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-values { display: flex; flex-direction: column; gap: 1px; margin-top: 32px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.about-value-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 22px; background: var(--surface); }
.about-value-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.about-value-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }
.about-value-text strong { color: var(--text); font-weight: 500; }
.about-preview-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 28px; color: var(--orange); text-decoration: none; font-size: 14px; font-weight: 500; transition: gap 0.2s; }
.about-preview-link:hover { gap: 11px; }

/* About page team/values section */
.about-intro { max-width: 1200px; margin: 0 auto; padding: 80px 4.5rem 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.about-stat-item { background: var(--near-black); padding: 32px 28px; }
.about-stat-num { font-size: 40px; font-weight: 300; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.about-stat-num span { color: var(--orange); }
.about-stat-lbl { font-size: 12px; color: var(--text-tertiary); margin-top: 8px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── RESULTS / SOCIAL PROOF ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s; }
.review-card:hover { border-color: var(--border-hover); }
.review-stars { display: flex; gap: 3px; }
.review-star { color: var(--orange); font-size: 14px; }
.review-quote { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text-secondary); flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; color: var(--orange); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 500; color: var(--text); }
.review-biz { font-size: 11px; color: var(--text-tertiary); margin-top: 2px; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.portfolio-card { background: var(--near-black); border: 1px solid var(--border); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.portfolio-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.portfolio-card-top { display: flex; align-items: center; justify-content: space-between; }
.portfolio-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.portfolio-arrow { color: var(--text-tertiary); font-size: 18px; transition: color 0.2s, transform 0.2s; }
.portfolio-card:hover .portfolio-arrow { color: var(--orange); transform: translate(2px,-2px); }
.portfolio-name { font-size: 15px; font-weight: 500; color: var(--text); }
.portfolio-type { font-size: 12px; color: var(--text-tertiary); font-weight: 300; }
.portfolio-tag { display: inline-block; padding: 3px 10px; border: 1px solid var(--border); border-radius: 9999px; font-size: 10px; color: var(--text-tertiary); letter-spacing: 0.08em; text-transform: uppercase; width: fit-content; margin-top: 2px; }

.results-divider { border: none; border-top: 1px solid var(--border); margin: 64px 0 0; }
.results-subsection-title { font-size: 18px; font-weight: 300; color: var(--text); letter-spacing: -0.02em; margin-top: 48px; }
.results-subsection-title span { color: var(--orange); }

.reviews-grid--single { grid-template-columns: minmax(0, 680px); justify-content: center; }
.portfolio-grid--single { grid-template-columns: minmax(0, 360px); justify-content: center; }

/* ── PACKAGES ── */
.cmp-grid-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-grid { display: grid; grid-template-columns: 200px repeat(3, 1fr); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 56px; }
.cmp-label-hdr { background: var(--near-black); border-bottom: 1px solid var(--border); }
.cmp-plan-hdr { padding: 28px 24px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--near-black); display: flex; flex-direction: column; position: relative; }
.cmp-plan-hdr.featured { background: var(--surface); }
.cmp-plan-hdr.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); }
.cmp-plan-badge { display: inline-block; border: 1px solid var(--border); border-radius: 9999px; padding: 2px 10px; font-size: 10px; font-weight: 400; color: var(--text-secondary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; width: fit-content; }
.cmp-plan-hdr.featured .cmp-plan-badge { border-color: rgba(249,115,22,0.3); color: var(--orange); }
.cmp-plan-name { font-size: 20px; font-weight: 300; color: var(--text); letter-spacing: -0.02em; }
.cmp-plan-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; margin-top: 6px; flex: 1; }
.cmp-plan-price { display: flex; align-items: baseline; gap: 3px; margin-top: 16px; }
.cmp-plan-price .amt { font-size: 36px; font-weight: 300; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.cmp-plan-price .per { font-size: 13px; color: var(--text-tertiary); }
.cmp-plan-setup { font-size: 11px; color: var(--text-tertiary); margin-top: 5px; }
.cmp-cta { display: block; text-align: center; width: 100%; box-sizing: border-box; border: 1px solid var(--border); color: var(--text-secondary); padding: 11px 14px; border-radius: 9999px; font-weight: 500; font-size: 12px; letter-spacing: 0.02em; margin-top: 18px; cursor: pointer; font-family: inherit; background: none; transition: all 0.2s; }
.cmp-cta:hover { border-color: var(--border-hover); color: var(--text); }
.cmp-cta.featured-cta { background: var(--orange); color: var(--text); border-color: transparent; }
.cmp-cta.featured-cta:hover { background: #ea6a0a; }
.cmp-feat-group { grid-column: 1 / -1; padding: 12px 24px; font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--border); }
.cmp-row-label { padding: 13px 24px; font-size: 13px; color: var(--text-secondary); font-weight: 300; border-bottom: 1px solid var(--border); background: var(--near-black); display: flex; align-items: center; }
.cmp-row-val { padding: 13px 16px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--near-black); display: flex; align-items: center; justify-content: center; }
.cmp-row-val.featured-col { background: var(--surface); }
.cmp-check { color: var(--orange); font-weight: 700; font-size: 14px; }
.cmp-minus { color: var(--border-hover); font-size: 18px; line-height: 1; }
.cmp-text-val { font-size: 12px; color: var(--text-secondary); text-align: center; line-height: 1.4; }
.cmp-last { border-bottom: none; }

/* ── FAQ ── */
.faq-list { margin-top: 56px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn { width: 100%; background: var(--near-black); border: none; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; gap: 20px; transition: background 0.15s; }
.faq-btn:hover { background: var(--surface); }
.faq-q { font-size: 15px; font-weight: 400; color: var(--text); letter-spacing: -0.01em; }
.faq-icon { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--text-secondary); transition: background 0.2s, transform 0.3s, border-color 0.2s; }
.faq-item.open .faq-icon { background: var(--orange); color: var(--text); border-color: transparent; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--surface); }
.faq-body-inner { padding: 0 26px 22px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-body { max-height: 600px; }

/* ── CONTACT ── */
.contact-section { background: var(--near-black); padding: 120px 4.5rem; text-align: center; border-top: 1px solid var(--border); }
.contact-cards { display: flex; justify-content: center; gap: 1px; flex-wrap: wrap; margin-bottom: 56px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; max-width: 720px; margin-left: auto; margin-right: auto; }
.c-card { background: var(--surface); flex: 1; padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; transition: background 0.15s; min-width: 160px; }
.c-card:hover { background: var(--surface-2); }
.c-icon { font-size: 20px; margin-bottom: 4px; }
.c-label { font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 2px; }
.c-value { font-size: 13px; font-weight: 400; color: var(--text); text-align: center; word-break: break-word; overflow-wrap: anywhere; line-height: 1.4; }

.contact-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 14px;
  font-size: 14px; color: var(--text);
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-tertiary); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(249,115,22,0.4); }
.contact-form select { color: var(--text-secondary); -webkit-appearance: none; }
.contact-form select option { background: #111; }
.contact-form textarea { height: 110px; resize: vertical; }
.contact-form .btn-orange { width: 100%; justify-content: center; font-size: 14px; padding: 15px; margin-top: 4px; }

/* ── CTA BANNER (home page) ── */
.cta-banner { background: var(--black); border-top: 1px solid var(--border); padding: 100px 4.5rem; text-align: center; }
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 300; color: var(--text); letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.18; }
.cta-banner h2 em { font-style: italic; color: var(--text-secondary); }
.cta-banner p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.cta-banner-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--text); color: var(--black);
  padding: 14px 28px; border-radius: 9999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 150ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: rgba(255,255,255,0.88); }
.btn-primary:active { transform: scale(0.96); }

.btn-outline {
  background: transparent; color: var(--text-secondary);
  padding: 14px 28px; border-radius: 9999px;
  font-size: 14px; font-weight: 400; letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--border-hover); color: var(--text); }
.btn-outline:active { transform: scale(0.96); }

.btn-orange {
  background: var(--orange); color: var(--text);
  padding: 14px 28px; border-radius: 9999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 150ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-orange:hover { background: #ea6a0a; }
.btn-orange:active { transform: scale(0.96); }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 40px 4.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo svg { width: 26px; height: 26px; }
.footer-logo-name { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 2px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-tertiary); text-decoration: none; font-size: 13px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-tertiary); font-size: 12px; }

/* ── CHATBOT ── */
.chat-backdrop { display: none; position: fixed; inset: 0; z-index: 198; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.25s; pointer-events: none; }
@media (max-width: 768px) {
  .chat-backdrop { display: block; }
  .chat-backdrop.open { opacity: 1; pointer-events: all; }
}

.chat-bubble { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 52px; height: 52px; background: var(--text); border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: transform 0.25s, box-shadow 0.25s, background 0.2s; }
.chat-bubble:hover { transform: scale(1.06); background: rgba(255,255,255,0.9); }
.chat-bubble svg { width: 22px; height: 22px; transition: opacity 0.2s; }
.chat-bubble .icon-chat { opacity: 1; position: absolute; }
.chat-bubble .icon-close { opacity: 0; position: absolute; }
.chat-bubble.open .icon-chat { opacity: 0; }
.chat-bubble.open .icon-close { opacity: 1; }

.chat-notif { position: absolute; top: -3px; right: -3px; width: 16px; height: 16px; background: var(--orange); border-radius: 50%; border: 2px solid var(--black); font-size: 9px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.chat-bubble.open .chat-notif { transform: scale(0); }

.chat-panel { position: fixed; bottom: 94px; right: 28px; z-index: 199; width: 350px; max-height: 500px; background: #111; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.5); display: flex; flex-direction: column; overflow: hidden; transform: translateY(16px) scale(0.96); opacity: 0; pointer-events: none; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s; transform-origin: bottom right; }
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.chat-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.chat-header-avatar { width: 36px; height: 36px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-header-avatar svg { width: 20px; height: 20px; }
.chat-header-name { font-size: 13px; font-weight: 500; color: var(--text); }
.chat-header-status { font-size: 11px; color: var(--text-tertiary); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chat-status-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }

.chat-messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: #0a0a0a; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.msg { display: flex; gap: 7px; align-items: flex-end; max-width: 88%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-avatar { width: 26px; height: 26px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.msg-bubble { padding: 9px 12px; border-radius: 14px; font-size: 13px; line-height: 1.6; white-space: pre-line; word-break: break-word; }
.msg.bot .msg-bubble { background: var(--surface); color: var(--text); border-bottom-left-radius: 3px; border: 1px solid var(--border); }
.msg.user .msg-bubble { background: var(--orange); color: var(--text); border-bottom-right-radius: 3px; }
.msg-bubble strong { font-weight: 600; }
.msg-time { font-size: 10px; color: var(--text-tertiary); margin-top: 3px; padding: 0 4px; }

.typing-indicator { display: flex; gap: 4px; padding: 9px 12px; background: var(--surface); border-radius: 14px; border-bottom-left-radius: 3px; border: 1px solid var(--border); }
.typing-dot { width: 6px; height: 6px; background: var(--border-hover); border-radius: 50%; animation: typingBounce 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,60%,100% { transform: translateY(0); background: rgba(255,255,255,0.2); } 30% { transform: translateY(-5px); background: var(--orange); } }

.chat-quick-replies { padding: 8px 14px 0; display: flex; gap: 6px; flex-wrap: wrap; background: #0a0a0a; flex-shrink: 0; }
.qr-btn { background: var(--surface); border: 1px solid var(--border); border-radius: 9999px; padding: 5px 11px; font-size: 12px; font-weight: 400; color: var(--text-secondary); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.qr-btn:hover { background: var(--orange); color: var(--text); border-color: transparent; }

.chat-input-row { padding: 10px 12px; display: flex; gap: 7px; align-items: center; background: #111; border-top: 1px solid var(--border); flex-shrink: 0; }
.chat-input { flex: 1; background: var(--surface); border: 1px solid transparent; border-radius: 20px; padding: 8px 12px; font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color 0.2s; resize: none; }
.chat-input:focus { border-color: rgba(249,115,22,0.3); }
.chat-input::placeholder { color: var(--text-tertiary); }
.chat-send { width: 32px; height: 32px; background: var(--orange); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s, background 0.2s; }
.chat-send:hover { transform: scale(1.08); }
.chat-send svg { width: 14px; height: 14px; }

/* ── MESH BACKGROUND ── */
#mesh-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; display: block; }
.section, .feature-band, .contact-section, footer, .about-preview, .cta-banner { background: rgba(0, 0, 0, 0.80) !important; }
.page-hero { background: rgba(0,0,0,0.88) !important; }

.cmp-cta { width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .feature-band-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar-wrapper { padding: 0.875rem 1.25rem; background: rgba(0,0,0,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
  .navbar-left, .navbar-right { display: none; }
  .navbar-hamburger { display: block; }
  .navbar-logo { position: static; transform: none !important; }
  .navbar-inner { background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; padding: 0 !important; border-radius: 0 !important; max-width: 100% !important; }
  .navbar-banner { padding: 8px 16px; font-size: 12px; gap: 6px; }

  section[id], .feature-band { scroll-margin-top: 112px; }

  /* Hero */
  #shaderCanvas { opacity: 0.65; transform: translateY(-18%); }
  .hero::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 15%, transparent 50%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.82) 80%, rgba(0,0,0,0.93) 100%); }

  /* Page hero */
  .page-hero { padding: 130px 1.25rem 56px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 15px; }
  .page-hero-btns { flex-direction: column; align-items: stretch; }
  .page-hero-btns a, .page-hero-btns button { width: 100%; justify-content: center; }

  /* Sections */
  .hero { padding: 144px 1.25rem 72px; }
  .section { padding: 64px 1.25rem; }
  .feature-band { padding: 64px 1.25rem; }
  .contact-section { padding: 64px 1.25rem; }
  .about-preview { padding: 64px 1.25rem; }
  .cta-banner { padding: 64px 1.25rem; }
  .about-intro { padding: 48px 1.25rem 0; }
  footer { padding: 28px 1.25rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .section-sub { margin-bottom: 40px; }

  /* Grids collapse */
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing: stacked */
  .cmp-grid-wrapper { overflow-x: visible; margin: 0; padding: 0; }
  .cmp-grid { display: flex; flex-direction: column; min-width: unset; gap: 1px; background: var(--border); margin-top: 40px; }
  .cmp-label-hdr, .cmp-feat-group, .cmp-row-label, .cmp-row-val { display: none; }
  .cmp-plan-hdr { border-left: none; border-bottom: none; width: 100%; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: column; border-radius: 12px; }
  .c-card { flex-direction: row; justify-content: flex-start; gap: 12px; }
  .contact-form textarea { resize: none; }

  /* Results */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .reviews-grid--single { grid-template-columns: 1fr; justify-content: unset; }
  .review-card { padding: 20px 18px; gap: 12px; border-radius: 14px; }
  .review-quote { font-size: 14px; line-height: 1.7; }
  .review-avatar { width: 36px; height: 36px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .portfolio-grid--single { grid-template-columns: 1fr; justify-content: unset; }
  .portfolio-card { padding: 18px 16px; gap: 8px; border-radius: 12px; }
  .portfolio-name { font-size: 14px; }
  .results-divider { margin: 40px 0 0; }
  .results-subsection-title { font-size: 16px; margin-top: 28px; }

  /* Hero paragraph */
  .hero p { color: rgba(255,255,255,0.95); }

  /* Metric bar */
  .metric-bar-wrap { width: 90px; }

  /* Hero stats */
  .hero-stats { gap: 24px; display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px; padding-top: 28px; }

  /* Decorative pills */
  .es { display: none; }

  /* iOS Safari: prevent auto-zoom */
  .contact-form input, .contact-form textarea, .contact-form select, .chat-input { font-size: 16px; }

  /* CTA banner */
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns a, .cta-banner-btns button { width: 100%; justify-content: center; }

  /* About */
  .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Drawer */
  .mobile-menu { overscroll-behavior: contain; }
  .chat-messages { -webkit-overflow-scrolling: touch; }

  /* Chat panel */
  .chat-bubble { right: 20px; bottom: 20px; }
  .chat-panel { left: 10px; right: 10px; width: auto; bottom: 84px; max-height: min(72vh, calc(100dvh - 110px)); border-radius: 14px; transform-origin: bottom center; }
}

@media (max-width: 480px) {
  .navbar-banner-link { display: none; }

  .hero-badge { font-size: 10px; padding: 5px 12px; letter-spacing: 0.05em; margin-bottom: 24px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 15px; margin-bottom: 36px; }
  .section-title { font-size: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }

  .chat-bubble { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .chat-panel { left: 8px; right: 8px; bottom: 76px; }
}

a, button { touch-action: manipulation; }

@supports (padding: env(safe-area-inset-bottom)) {
  .chat-bubble { bottom: max(28px, calc(env(safe-area-inset-bottom) + 14px)); right: max(28px, env(safe-area-inset-right)); }
  .chat-panel { bottom: max(94px, calc(env(safe-area-inset-bottom) + 82px)); right: max(28px, env(safe-area-inset-right)); }
}

@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

section[id], .feature-band { scroll-margin-top: 128px; }

@media (max-width: 480px) {
  @supports (padding: env(safe-area-inset-bottom)) {
    .chat-bubble { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px)); }
    .chat-panel { left: 8px; right: 8px; width: auto; bottom: max(76px, calc(env(safe-area-inset-bottom) + 68px)); }
  }
}
