/* =============================================
   TrueScal — LeftClick.ai Inspired Redesign
   Pure Black · Minimal · Numbered Sections
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:          #000000;
  --bg-2:        #0a0a0a;
  --bg-surface:  #111111;
  --bg-elevated: #161616;

  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.13);

  --text:        #ffffff;
  --text-2:      #a1a1aa;
  --text-3:      #52525b;

  --accent:      #ffffff;
  --green:       #4ade80;
  --red:         #f87171;

  /* Legacy compat — keeps existing HTML classes working */
  --clr-bg:          #000000;
  --clr-bg2:         #0a0a0a;
  --clr-surface:     rgba(255,255,255,0.025);
  --clr-surface2:    rgba(255,255,255,0.05);
  --clr-border:      rgba(255,255,255,0.07);
  --clr-border2:     rgba(255,255,255,0.13);
  --clr-primary:     #ffffff;
  --clr-primary-dark:#e4e4e7;
  --clr-secondary:   #a1a1aa;
  --clr-accent:      #ffffff;
  --clr-success:     #4ade80;
  --clr-text:        #ffffff;
  --clr-text-muted:  #a1a1aa;
  --clr-text-sub:    #52525b;
  --grad-primary:    linear-gradient(135deg, #fff 0%, #d4d4d8 100%);
  --grad-card:       rgba(255,255,255,0.02);
  --shadow-glow:     0 0 40px rgba(255,255,255,0.06);
  --shadow-card:     0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.7);
  --shadow-lg:       0 24px 64px rgba(0,0,0,0.9);

  --font-main:    'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.22s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::selection { background: #fff; color: #000; }

/* ============================================
   UTILITY
   ============================================ */
.container { width: 90%; max-width: 1120px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px 5px 5px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.section-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #1c1c1c;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.section-title .highlight {
  color: var(--text-2);
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================
   BUTTONS — LeftClick.ai Style
   White pill + black circle arrow icon
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 5px 5px 20px;
  border-radius: 99px;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
}

/* The arrow circle icon — appended via .btn-arrow span */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.95rem;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border: none;
}
.btn-primary .btn-arrow {
  background: #000000;
  color: #ffffff;
}
.btn-primary:hover {
  background: #f0f0f0;
  transform: none;
  box-shadow: 0 2px 16px rgba(255,255,255,0.15);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(2px);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  padding: 5px 5px 5px 20px;
}
.btn-outline .btn-arrow {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.09);
  transform: none;
}
.btn-outline:hover .btn-arrow {
  transform: translateX(2px);
  background: rgba(255,255,255,0.2);
}

.btn-lg {
  padding: 6px 6px 6px 24px;
  font-size: 0.95rem;
}
.btn-lg .btn-arrow {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

/* Navbar CTA button — slightly smaller */
.nav-cta .btn {
  padding: 4px 4px 4px 16px;
  font-size: 0.85rem;
}
.nav-cta .btn .btn-arrow {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 32px; height: 32px;
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--text-2); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--text); }

/* ============================================
   HERO — LeftClick.ai Vertical Curtain Effect
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  background: #000;
}

/* Vertical curtain/drape columns — exact leftclick.ai hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 3px,
    transparent 3px,
    transparent 72px,
    rgba(255,255,255,0.015) 72px,
    rgba(255,255,255,0.015) 73px,
    transparent 73px,
    transparent 144px
  );
  pointer-events: none;
  z-index: 0;
}

/* The main curtain columns — 3D pleated fabric effect */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0%,
      rgba(80,80,90,0.0) 0%,
      rgba(80,80,90,0.18) 4%,
      rgba(40,40,45,0.25) 8%,
      rgba(20,20,22,0.15) 12%,
      rgba(60,60,68,0.22) 16%,
      rgba(80,80,90,0.18) 20%,
      rgba(30,30,35,0.20) 24%,
      rgba(70,70,78,0.20) 28%,
      rgba(45,45,52,0.22) 32%,
      rgba(75,75,85,0.18) 36%,
      rgba(35,35,40,0.20) 40%,
      rgba(65,65,72,0.18) 44%,
      rgba(80,80,90,0.16) 48%,
      rgba(40,40,45,0.20) 52%,
      rgba(70,70,78,0.16) 56%,
      rgba(50,50,58,0.18) 60%,
      rgba(30,30,35,0.15) 64%,
      rgba(55,55,62,0.14) 68%,
      rgba(40,40,46,0.12) 72%,
      rgba(25,25,28,0.10) 76%,
      transparent 85%,
      transparent 100%
    );
  mask-image: linear-gradient(180deg,
    black 0%,
    black 40%,
    rgba(0,0,0,0.6) 70%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(180deg,
    black 0%,
    black 40%,
    rgba(0,0,0,0.6) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

#particles-canvas { display: none; }
#hero-cv {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.2;
}
#hero-cur { display: none; }

.hero .container { position: relative; z-index: 5; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2.5s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.4; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.line-gradient {
  color: var(--text-2);
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  display: inline;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.trust-item:first-child { padding-left: 28px; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 14px; height: 14px; stroke: var(--text-3); margin: 0 auto 4px; }
.trust-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.trust-label { font-size: 0.7rem; color: var(--text-2); font-weight: 400; }

/* Hero visual card — now shown below as a centered element */
.hero-visual {
  display: none;
}
.hero-card-main {
  background: #0f0f0f;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 340px;
  position: relative;
}
.card-chart-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.card-chart-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.card-chart-value span { font-size: 0.85rem; color: var(--green); margin-left: 6px; }
.mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 64px; margin-bottom: 16px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: #222; }
.bar:last-child { background: var(--text); }
.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-label { font-size: 0.65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.metric-value { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.metric-value.cyan { color: #60a5fa; }
.metric-value.up { color: var(--green); }

/* Float badges hidden in new design */
.float-badge { display: none; }

/* ============================================
   MEET THE FOUNDER
   ============================================ */
.founder-section {
  padding: 100px 5%;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.founder-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
}
.founder-photo-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/5;
}
.founder-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 10px 14px;
}
.founder-photo-badge .badge-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.founder-photo-badge .badge-role {
  font-size: 0.72rem;
  color: var(--text-2);
}
.founder-content { display: flex; flex-direction: column; gap: 1.25rem; }
.founder-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.founder-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.founder-name span { color: var(--text-2); }
.founder-tagline {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
}
.founder-tagline strong { color: var(--text); font-weight: 600; }
.founder-desc {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 480px;
}
.founder-desc strong { color: var(--text-2); font-weight: 500; }
.founder-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.founder-pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
  white-space: nowrap;
}
.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: #fff;
  border-radius: 50px;
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
}
.founder-cta:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}
.founder-cta svg { width: 15px; height: 15px; transition: transform 0.2s; }
.founder-cta:hover svg { transform: translateX(3px); }

/* ============================================
   CLIENTS MARQUEE
   ============================================ */
.clients-section {
  padding: 40px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}
.client-logo:hover { color: var(--text-2); border-color: var(--border-2); }
.cl-icon { stroke: var(--text-3); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: start;
}

.service-card {
  background: var(--bg);
  padding: 32px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after { display: none; }
.service-card:hover { background: #0a0a0a; }
.service-card[aria-expanded="true"] { background: #0a0a0a; }

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.accordion-icon {
  width: 40px; height: 40px;
  background: #111;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .accordion-icon,
.service-card[aria-expanded="true"] .accordion-icon {
  background: #fff;
  color: #000;
  border-color: transparent;
}
.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-hook {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-lottie-wrapper {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.service-best-for {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 16px;
  display: inline-block;
}
.btn-explore-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-2);
  margin-top: 12px;
  transition: var(--transition);
}
.btn-explore-cta:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-explore-cta .accordion-arrow {
  transition: transform 0.3s ease;
}
.service-card[aria-expanded="true"] .btn-explore-cta { border-color: rgba(255,255,255,0.2); }
.service-card[aria-expanded="true"] .btn-explore-cta .accordion-arrow {
  transform: rotate(90deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding-top 0.3s ease;
}
.service-card[aria-expanded="true"] .accordion-body {
  max-height: 800px;
  padding-top: 20px;
}

.accordion-list.improved-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.improved-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.improved-list .acc-title {
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.improved-list .acc-bullet {
  color: var(--text-3);
  font-size: 1rem;
  line-height: 1;
}
.improved-list .service-detail-text {
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
  line-height: 1.6;
}
.btn-service-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  font-size: 0.83rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-service-start:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 400;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg);
  padding: 32px 24px;
  text-align: left;
  transition: background 0.2s ease;
  position: relative;
}
.process-step:hover { background: #0a0a0a; }
.step-num {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-3);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.step-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  filter: grayscale(1);
}
.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 100px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.portfolio-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portfolio-card {
  background: var(--bg-2);
  overflow: hidden;
  transition: background 0.2s ease;
}
.portfolio-card:hover { background: #111; }
.portfolio-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.portfolio-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
  filter: grayscale(0.5);
}
.portfolio-card:hover .portfolio-thumb-bg { transform: scale(1.04); }
.bg-1 { background: #111; }
.bg-2 { background: #0d0d0d; }
.bg-3 { background: #0a0a0a; }
.bg-4 { background: #0f0f0f; }
.bg-5 { background: #0c0c0c; }
.bg-6 { background: #111; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-body { padding: 16px 20px; border-top: 1px solid var(--border); }
.portfolio-tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
}
.portfolio-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.portfolio-result { font-size: 0.8rem; color: var(--text-2); }
.portfolio-result strong { color: var(--green); font-weight: 600; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.testimonial-card {
  background: var(--bg);
  padding: 28px 24px;
  transition: background 0.2s ease;
}
.testimonial-card:hover { background: #0a0a0a; }
.testi-stars {
  color: #a1a1aa;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 2.5rem;
  line-height: 0.6;
  color: var(--text-3);
  margin-bottom: 14px;
  font-family: Georgia, serif;
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.testi-text {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  background: #222;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.av-1, .av-2, .av-3, .av-4, .av-5, .av-6 {
  background: #1a1a1a;
  color: var(--text);
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.72rem; color: var(--text-3); }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  align-items: start;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card {
  background: var(--bg-2);
  padding: 32px 28px;
  transition: background 0.2s ease;
  position: relative;
}
.pricing-card:hover { background: #111; transform: none; box-shadow: none; }
.pricing-card.popular {
  background: #0f0f0f;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.pricing-card.popular:hover { background: #141414; transform: none; }
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card.popular .plan-name { color: var(--text-2); }
.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.plan-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-3); }
.plan-desc { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-2);
}
.feat-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid var(--border-2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.feat-icon.no { color: var(--red); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--bg);
}
.cta-box {
  background: #0a0a0a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.cta-box .section-tag {
  display: inline-flex;
  justify-content: center;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--border-2);
  background: rgba(255,255,255,0.02);
}
.cm-icon { font-size: 1.2rem; }
.cm-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 3px;
}
.cm-value { font-size: 0.88rem; font-weight: 500; color: var(--text); }

.contact-form {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #0a0a0a;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text);
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: #111;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #0a0a0a; color: var(--text); }

/* ============================================
   LATEST BLOG
   ============================================ */
.latest-blog-section {
  padding: 100px 5%;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.lb-container { max-width: 1120px; margin: 0 auto; }
.lb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 1rem;
}
.lb-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.lb-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.lb-header p { font-size: 0.88rem; color: var(--text-2); margin-top: 6px; }
.lb-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  padding: 9px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.lb-view-all svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lb-view-all:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.lb-view-all:hover svg { transform: translateX(3px); }
.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lb-card {
  background: var(--bg);
  display: block;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: background 0.2s ease;
}
.lb-card:hover { background: #0a0a0a; }
.lb-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.lb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: grayscale(0.2);
}
.lb-card:hover .lb-card-img img { transform: scale(1.03); }
.lb-card-img-placeholder {
  width: 100%; height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.lb-card-img-placeholder svg { width: 40px; height: 40px; stroke: var(--text-3); }
.lb-cat-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border-2);
}
.lb-card-body { padding: 20px; border-top: 1px solid var(--border); }
.lb-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.lb-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.lb-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-3);
}
.lb-card-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.75rem;
}
.lb-card-read svg { width: 12px; height: 12px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
  margin: 16px 0 24px;
}
.socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-3);
  transition: var(--transition);
}
.social-btn:hover {
  background: #fff;
  color: #000;
  border-color: transparent;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-3);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--text-2); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js-reveal-ready .reveal { opacity: 0; transform: translateY(24px); }
.js-reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { max-width: 680px; }
  .founder-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .founder-photo-frame { max-width: 340px; margin: 0 auto; }
  .founder-pills { justify-content: center; }
  .founder-cta { margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .lb-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 130px 0 80px; }
  .hero-title { letter-spacing: -0.03em; }
  .hero-trust { flex-direction: column; width: 100%; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 0; text-align: left; }
  .trust-item:last-child { border-bottom: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lb-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { grid-column: 1; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .founder-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .accordion-body { transition: none !important; }
  .badge-dot, .marquee-track { animation: none !important; }
}

/* ============================================
   FINAL POLISH OVERRIDES
   ============================================ */

/* Force pure black — no blue bleed from canvas animation */
body, html {
  background: #000 !important;
}

/* Canvas animation completely hidden */
#hero-cv, #particles-canvas {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Logo icon — pure dark, no orange gradient */
.logo-icon {
  background: #1a1a1a !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

/* Hero background — seal off any canvas color leak */
.hero {
  background: #000 !important;
}

/* Ensure hero section bg color overrides any inline style */
.hero.hero-saas {
  background: #000 !important;
}

/* Tighter hero grid pattern */
.hero::before {
  opacity: 0.6;
}

/* Section tag — ensure centered in process/testimonials etc */
.text-center .section-tag {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing popular card — clean white badge */
.pricing-card.popular {
  background: #0d0d0d !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Scrolled navbar — ensure true black bg */
.navbar.scrolled {
  background: rgba(0,0,0,0.95) !important;
}

/* Founder section bg */
.founder-section {
  background: #070707 !important;
}

/* Stats section bg */
.stats {
  background: #070707 !important;
}

/* Contact section bg */
.contact {
  background: #070707 !important;
}

/* Portfolio section bg */
.portfolio {
  background: #070707 !important;
}

/* Pricing section bg */
.pricing {
  background: #070707 !important;
}

/* Client section bg */
.clients-section {
  background: #000 !important;
}

/* Footer bg */
.footer {
  background: #060606 !important;
}

/* Latest blog section */
.latest-blog-section {
  background: #000 !important;
}

/* Testimonials section bg */
.testimonials {
  background: #000 !important;
}

/* Process section bg */
.process {
  background: #000 !important;
}

/* Services section bg */
.services {
  background: #000 !important;
}

/* CTA section bg */
.cta-section {
  background: #000 !important;
}

/* Contact section bg */
.contact {
  background: #070707 !important;
}

/* Mobile responsive overrides for new design */
@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .founder-pills {
    justify-content: center !important;
  }
  .founder-content {
    align-items: center !important;
  }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .process-grid { grid-template-columns: 1fr !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .lb-grid { grid-template-columns: 1fr !important; }
  .footer-inner { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-inner { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .hero-trust {
    flex-direction: column !important;
  }
  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    width: 100% !important;
    text-align: center !important;
  }
  .trust-item:last-child { border-bottom: none !important; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
