/* ============================================
   FADEZY BARBER AGENCY — styles.css
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0A0A0A;
  --surface: #111111;
  --surface2:#161616;
  --gold:    #C9A84C;
  --gold-light: #e0c06a;
  --white:   #FFFFFF;
  --muted:   #888888;
  --border:  #222222;
  --font:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius:  12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 100px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ── Section Headers ── */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ── Scroll reveal base states ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE LOADER
   ============================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 8px;
}
.loader-logo { text-align: center; }
.loader-logo svg { display: block; margin: 0 auto; }
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-portfolio-link {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.nav-portfolio-link::after {
  background: var(--gold) !important;
}

.nav-cta { padding: 10px 22px; font-size: 0.82rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu a { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--gold); }

/* ============================================
   HERO — VIDEO SLIDESHOW
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  z-index: 1;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-text { text-align: center; max-width: 860px; }

.hero-line {
  overflow: hidden;
  margin-bottom: 4px;
}
.hero-line span {
  display: block;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  transform: translateY(100%);
  opacity: 0;
}
.hero-line-gold span {
  font-weight: 900;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
}

/* Stat bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(17,17,17,0.85);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 14px 36px;
  margin-top: 60px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hero-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Slideshow dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.7);
}
.hero-dot.active:hover {
  background: var(--gold-light);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-section { background: var(--surface); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.pain-card {
  background: var(--surface2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.pain-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.pain-icon { margin-bottom: 14px; }
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.pain-cta {
  text-align: center;
  padding: 40px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}
.pain-cta-text {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(201,168,76,0.12);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.services-grid-lg { grid-template-columns: repeat(3, 1fr); }

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card-link:hover { color: inherit; }
.service-link-arrow {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.service-page-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.service-page-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.service-detail-section {
  padding: 80px 0;
}
.service-detail-section:nth-child(even) { background: var(--surface); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.service-detail-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.service-bullets {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}
.service-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-icon-large {
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta-section {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.service-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.service-cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .services-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
}
@media (max-width: 540px) {
  .services-grid-lg { grid-template-columns: 1fr; }
}

/* Compact service grid for homepage */
.services-grid-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.services-grid-compact .service-card {
  padding: 20px 16px;
}
.services-grid-compact .service-card p,
.services-grid-compact .service-card .service-link-arrow { display: none; }
.services-grid-compact .service-icon {
  width: 44px; height: 44px;
  margin-bottom: 12px;
}
.services-grid-compact .service-name { font-size: 0.88rem; margin-bottom: 0; }

@media (max-width: 900px) {
  .services-grid-compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .services-grid-compact { grid-template-columns: repeat(2, 1fr); }
}

/* Process teaser strip on homepage */
.process-teaser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process-teaser-steps {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 260px;
}
.process-teaser-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.process-teaser-step + .process-teaser-step::before {
  content: '→';
  position: absolute;
  left: -14px;
  top: 10px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.process-teaser-num {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 10px;
}
.process-teaser-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

@media (max-width: 700px) {
  .process-teaser { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .process-teaser-steps { gap: 16px; flex-wrap: wrap; }
  .process-teaser-step + .process-teaser-step::before { display: none; }
}

/* Client names strip on homepage */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}
.client-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition);
}
.client-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Single testimonial feature card */
.testimonial-feature {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-feature .stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; }
.testimonial-feature blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px;
}
.testimonial-feature cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
}

/* How It Works page */
.hiw-step {
  display: flex;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  text-align: right;
}
.hiw-step-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gold);
}
.hiw-step-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
@media (max-width: 540px) {
  .hiw-step { flex-direction: column; gap: 12px; }
  .hiw-step-num { font-size: 2rem; width: auto; text-align: left; }
}

/* FAQ */
.faq-list { text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-a {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.93rem;
  margin: 0;
}

/* ============================================
   RESULTS / SOCIAL PROOF
   ============================================ */
.results-section { background: var(--surface); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.counter-item {
  background: var(--surface2);
  padding: 40px 20px;
  text-align: center;
}
.counter-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.7;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }

/* ============================================
   PROCESS
   ============================================ */
.process-section { background: var(--black); }

.process-timeline { position: relative; }

.process-line {
  position: absolute;
  top: 32px;
  left: calc(50% - 590px);
  right: calc(50% - 590px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process-step { text-align: center; padding: 0 16px; }
.process-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step-dot {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 3px var(--gold);
}
.process-step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   OUR CLIENTS SECTION
   ============================================ */
.clients-section { background: var(--surface); }

.clients-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.client-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 50px rgba(201,168,76,0.12);
}

.client-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.client-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.client-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* 9:16 vertical video embed */
.client-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  flex-shrink: 0;
}
.client-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.client-btn {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding: 12px 20px;
  margin-top: auto;
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact-section {
  background: var(--surface);
  border-top: 3px solid var(--gold);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-left { padding-top: 20px; }
.contact-left .section-title { text-align: left; margin-bottom: 16px; }
.contact-left .section-eyebrow { display: block; }

.contact-sub {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1rem;
}

.contact-phone { margin-bottom: 28px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  transition: color var(--transition);
}
.phone-link:hover { color: var(--gold-light); }

.contact-trust { display: flex; flex-direction: column; gap: 10px; }
.trust-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-gold { color: var(--gold); font-weight: 700; }

/* Form */
.contact-right {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--surface2); }

.form-submit { margin-top: 4px; font-size: 0.9rem; letter-spacing: 0.1em; }

.form-success {
  text-align: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 14px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}
.form-error {
  text-align: center;
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: 8px;
  padding: 14px;
  font-size: 0.88rem;
  color: #ff6b6b;
}
.form-error a { color: var(--gold); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070707;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-contact p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.footer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold-light); }
.footer-email { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-email:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
}
.mobile-cta-link {
  color: var(--black);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: block;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-hero {
  background: var(--black);
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.portfolio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.portfolio-hero .section-eyebrow { margin-bottom: 16px; }
.portfolio-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.portfolio-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.portfolio-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.portfolio-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.portfolio-pill:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Portfolio client sections */
.portfolio-client-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.portfolio-client-section:last-child { border-bottom: none; }
.portfolio-client-section:nth-child(even) {
  background: var(--surface);
}
.portfolio-client-section:nth-child(odd) {
  background: var(--black);
}

.portfolio-client-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.portfolio-client-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}
.portfolio-client-heading .client-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
}

/* Portfolio video grid — 9:16 */
.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-video-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portfolio-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.portfolio-video-wrap:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.portfolio-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.portfolio-video-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 0 2px;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .portfolio-video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-left .section-title { font-size: 2rem; }
  .clients-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
    padding: 24px 32px;
    width: calc(100% - 48px);
  }
  .hero-stat-divider { width: 60%; height: 1px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 340px; }
  .hero-dots { bottom: 90px; }

  /* Grids -> 1 column */
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .clients-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .portfolio-video-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-right { padding: 28px 20px; }

  /* Mobile sticky bar */
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }

  /* Process steps vertical */
  .process-step { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .process-step-dot { margin: 0 0 12px 0; }

  /* Portfolio */
  .portfolio-hero { padding: 130px 0 60px; }
  .portfolio-client-heading { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-line span { font-size: 2.4rem; }
  .section-title { font-size: 1.8rem; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .contact-right { padding: 24px 16px; }
  .portfolio-nav-pills { gap: 8px; }
  .portfolio-pill { font-size: 0.72rem; padding: 6px 14px; }
}

@media (max-width: 375px) {
  .hero-line span { font-size: 2rem; }
  .hero-stats { padding: 20px; }
  .hero-stat-num { font-size: 1rem; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-indicator { animation: none; }

}
