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

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --fg: #F5F5F5;
  --fg-2: #AAAAAA;
  --accent: #FFD60A;
  --accent-dim: rgba(255, 214, 10, 0.15);
  --red: #FF453A;
  --green: #32D74B;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  text-decoration: none;
}

.logo-accent { color: var(--accent); }

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-2);
  display: none;
}

@media (min-width: 640px) { .nav-tagline { display: block; } }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  border-bottom: 1px solid #1E1E1E;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,214,10,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-2);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-sub strong { color: var(--fg); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.35rem 0.9rem;
  border: 1px solid #2A2A2A;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--fg-2);
  font-weight: 500;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.phone-mockup {
  background: #111;
  border: 1px solid #222;
  border-radius: 32px;
  padding: 1.25rem;
  max-width: 320px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,214,10,0.08);
}

.phone-screen {
  background: #0A0A0A;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
}

.video-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1E1E1E;
}

.vl-barbershop {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}

.vl-views {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
}

.video-card {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #1A1A1A;
  border-radius: 12px;
}

.vc-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.vt-barbers {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1510 0%, #2a2015 50%, #1a1510 100%);
  position: relative;
}

.vt-barbers::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(255,214,10,0.2);
  border-radius: 50%;
  border: 2px solid rgba(255,214,10,0.4);
}

.vt-restaurant {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1a10 0%, #1a2a1a 50%, #0f1a10 100%);
  position: relative;
}

.vt-restaurant::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
}

.vt-gym {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #101020 0%, #1a1a35 50%, #101020 100%);
  position: relative;
}

.vt-gym::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.vt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  font-size: 12px;
  color: white;
  opacity: 0.8;
}

.vc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
}

.vc-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.3;
}

.vc-meta {
  font-size: 0.65rem;
  color: var(--fg-2);
}

/* Hero stats */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #1E1E1E;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #222;
}

/* === PROBLEM === */
.problem {
  padding: 5rem 2rem;
  background: var(--bg-2);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
  .problem-divider {
    width: 1px;
    height: 120px;
    background: #222;
    align-self: center;
  }
}

.ps-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ps-text {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.6;
}

.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
}

.problem-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--fg-2);
  font-style: normal;
}

/* === SERVICES === */
.services {
  padding: 5rem 2rem;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5px;
  grid-template-columns: 1fr;
  background: #1E1E1E;
  border: 1px solid #1E1E1E;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-2); }

.sc-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.sc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.sc-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 5rem 2rem;
  background: var(--bg-2);
}

.pricing-inner { max-width: 640px; margin: 0 auto; }

.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-sub { font-size: 1rem; color: var(--fg-2); }

.pricing-card {
  background: var(--bg);
  border: 1px solid #2A2A2A;
  border-radius: 24px;
  overflow: hidden;
}

.pc-top {
  padding: 2.5rem;
  background: linear-gradient(135deg, #1A1800 0%, #0A0A0A 100%);
  border-bottom: 1px solid #1E1E1E;
}

.pc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 1rem;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pc-period {
  font-size: 1rem;
  color: var(--fg-2);
}

.pc-tagline {
  font-size: 0.9rem;
  color: var(--fg-2);
}

.pc-features {
  list-style: none;
  padding: 2rem 2.5rem;
  display: grid;
  gap: 0.9rem;
}

.pcf-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}

.pcf-check { flex-shrink: 0; }

.pc-closer {
  padding: 1.25rem 2.5rem;
  background: var(--accent-dim);
  font-size: 0.9rem;
  color: var(--fg);
  border-top: 1px solid rgba(255,214,10,0.1);
}

.pc-closer strong { color: var(--accent); }

.pricing-cta {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: #0D0D0D;
  border: 1px solid #1A1A1A;
  border-radius: 16px;
}

.pcta-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cta-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pcta-callout p {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 5rem 2rem;
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.test-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.test-card {
  background: var(--bg-2);
  border: 1px solid #1E1E1E;
  border-radius: 16px;
  padding: 2rem;
}

.tc-body {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tc-source {
  font-size: 0.75rem;
  color: var(--fg-2);
  border-top: 1px solid #1A1A1A;
  padding-top: 0.75rem;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  background: var(--bg-2);
  text-align: center;
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-vertical {}

.cv-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  margin-bottom: 1rem;
}

.cv-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.cv-pill {
  padding: 0.4rem 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(255,214,10,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid #1E1E1E;
}

.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-2);
  margin-bottom: 1rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: #333;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 7rem 4rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-visual { margin-top: 0; }
  .problem-inner { text-align: left; }
}
