/* ============================================
   SITE NAVIGATION
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--warm);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ============================================
   SHARED PAGE HERO
   ============================================ */
.page-hero {
  padding: 100px 24px 80px;
  text-align: center;
}

.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--warm);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

/* ============================================
   SERVICES INDEX
   ============================================ */
.services-full {
  padding: 20px 24px 100px;
}

.services-full-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-full-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, transform 0.2s;
}

.service-full-card:hover {
  border-color: var(--accent-glow);
  transform: translateX(4px);
}

.sfc-emoji {
  font-size: 40px;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.sfc-body {
  flex: 1;
}

.sfc-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.sfc-body p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.sfc-meta {
  display: flex;
  gap: 16px;
}

.sfc-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.sfc-timeline {
  font-size: 13px;
  color: var(--fg-muted);
}

.sfc-arrow {
  font-size: 22px;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.service-full-card:hover .sfc-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-band-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 8px;
}

.cta-band-inner p {
  color: var(--fg-muted);
  font-size: 16px;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.service-hero {
  padding: 60px 24px 80px;
}

.service-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-emoji-big {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
}

.service-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-meta-pills {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.pill {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.pill-price {
  color: var(--accent);
  background: var(--accent-soft);
}

.pill-time {
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.06);
}

.service-hero-actions {
  display: flex;
  gap: 12px;
}

/* Browser Mockup */
.browser-mock {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
  font-size: 12px;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
}

.browser-body {
  padding: 20px;
}

.mock-industry-hero {
  background: linear-gradient(135deg, var(--accent-soft), rgba(245,193,108,0.08));
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.mock-industry-emoji {
  font-size: 32px;
  flex-shrink: 0;
}

.mock-industry-lines {
  flex: 1;
}

.mock-line {
  height: 8px;
  background: var(--accent-soft);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-line.wide { width: 100%; }
.mock-line.medium { width: 65%; margin-bottom: 0; }

.mock-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.mock-feature-text {
  height: 8px;
  width: 70%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.mock-cta-strip {
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  opacity: 0.6;
}

/* Features Grid */
.service-features {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-features h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 56px;
  max-width: 600px;
}

.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: var(--accent-glow);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Example/Case Study */
.service-example {
  padding: 100px 24px;
}

.example-card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid rgba(232, 145, 58, 0.2);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
}

.example-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--bg-card);
  border: 1px solid var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
}

.example-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

/* Mini site mockup */
.mini-site {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.mini-header {
  background: var(--bg);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-brand {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
}

.mini-hero-strip {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-emoji {
  font-size: 32px;
}

.mini-tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  padding: 10px 14px 8px;
}

.mini-cta-row {
  display: flex;
  gap: 8px;
  padding: 0 14px 14px;
}

.mini-btn {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
}

.mini-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.example-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.example-tagline-text {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.example-desc {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Pricing CTA */
.service-pricing-cta {
  padding: 100px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

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

.pricing-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.pricing-cta-inner p {
  color: var(--fg-muted);
  font-size: 18px;
  margin-bottom: 36px;
}

.pricing-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Other Services */
.other-services {
  padding: 60px 24px 80px;
}

.other-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 20px;
  text-align: center;
}

.other-services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.other-service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}

.other-service-pill:hover {
  color: var(--fg);
  border-color: var(--accent-glow);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section {
  padding: 20px 24px 100px;
}

.pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.pricing-card--highlight {
  background: var(--bg-card);
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-dollar {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.pricing-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  font-family: var(--font-display);
  line-height: 1;
}

.pricing-once {
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-monthly {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-tagline {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing-ideal {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
  align-items: flex-start;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ */
.pricing-faq {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.pricing-faq h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
  text-align: center;
}

.faq-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item h4 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.faq-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Guarantee */
.pricing-guarantee {
  padding: 60px 24px 80px;
}

.guarantee-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px 40px;
}

.guarantee-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-inner h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.guarantee-inner p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-section {
  padding: 20px 24px 100px;
}

.portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portfolio-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-mockup {
  transform: translateY(-4px);
}

.pm-header {
  background: var(--bg-elevated);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pm-dots {
  display: flex;
  gap: 4px;
}

.pm-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.pm-dots span:first-child { background: #ff5f57; }
.pm-dots span:nth-child(2) { background: #febc2e; }
.pm-dots span:last-child { background: #28c840; }

.pm-url {
  font-size: 10px;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.pm-hero {
  padding: 20px 16px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pm-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.pm-biz-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.pm-tagline {
  font-size: 10px;
  color: var(--fg-muted);
}

.pm-features {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-feature-chip {
  font-size: 10px;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 4px 8px;
  text-align: center;
}

.pm-footer-strip {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-footer-btn {
  width: 48px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.7;
}

.pm-footer-lines {
  flex: 1;
}

.pm-line {
  height: 6px;
  border-radius: 3px;
  margin-bottom: 4px;
  width: 100%;
}

.pm-line.short {
  width: 60%;
  margin-bottom: 0;
}

.portfolio-industry-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.portfolio-card-info h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.portfolio-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.portfolio-service-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.portfolio-service-link:hover {
  opacity: 0.75;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .site-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
  }

  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .example-inner {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .services-full-grid {
    gap: 12px;
  }

  .service-full-card {
    padding: 20px;
  }

  .pricing-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .guarantee-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-actions,
  .service-meta-pills {
    flex-direction: column;
    align-items: flex-start;
  }

  .sfc-emoji {
    font-size: 32px;
    width: 44px;
  }

  .pricing-grid {
    max-width: 100%;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-story {
  padding: 100px 24px;
}

.about-story-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-content .section-label {
  display: block;
  margin-bottom: 16px;
}

.about-story-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.about-story-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.about-stat-card:hover {
  border-color: var(--accent-glow);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* Values */
.about-values {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.about-values .section-label {
  display: block;
  margin-bottom: 16px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.about-values h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.value-card:hover {
  border-color: var(--accent-glow);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Process */
.about-process {
  padding: 100px 24px;
}

.about-process .section-label {
  display: block;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-process h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.process-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-body p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.process-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-glow), transparent);
  margin: 8px 0 8px 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-stat-stack {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */

.hiw-hero {
  padding: 100px 24px 80px;
  position: relative;
}

.hiw-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.4;
}

.hiw-hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hiw-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hiw-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hiw-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hiw-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #0C0C0E;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-cta-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-cta-ghost:hover { color: var(--fg); }

/* 3-Step Process */
.hiw-steps {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.steps-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.hiw-section-sub {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 16px auto 0;
}

.steps-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s;
  position: relative;
}

.step-card:hover { border-color: rgba(232,145,58,0.3); }

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 4px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Before/After Section */
.hiw-before-after {
  padding: 100px 24px;
  background: var(--bg);
}

.ba-comparison {
  max-width: 960px;
  margin: 0 auto 64px;
}

.ba-comparison:last-child { margin-bottom: 0; }

.ba-business-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ba-emoji { font-size: 28px; }

.ba-business {
  font-weight: 700;
  font-size: 18px;
}

.ba-type {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.ba-sides {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.ba-arrow {
  font-size: 28px;
  color: var(--accent);
  display: flex;
  align-items: center;
  padding-top: 80px;
  font-weight: 700;
}

.ba-side { display: flex; flex-direction: column; gap: 10px; }

.ba-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}

.ba-label--before {
  background: rgba(255,255,255,0.08);
  color: var(--fg-muted);
}

.ba-label--after {
  background: var(--accent-soft);
  color: var(--accent);
}

.ba-browser {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

.ba-browser-bar {
  background: #1a1a22;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.browser-url {
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--fg-muted);
  flex: 1;
  text-align: center;
}

.ba-browser-body {
  background: #111115;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.ba-fake-nav {
  height: 40px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.ba-nav-brand .ba-fake-nav {
  background: rgba(232,145,58,0.15);
  border-bottom-color: rgba(232,145,58,0.2);
}

.ba-fake-hero {
  padding: 24px 20px;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.ba-hero-generic {
  background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
}

.ba-hero-warm {
  background: linear-gradient(135deg, #2a1a0a 0%, #1a100a 100%);
}

.ba-hero-light {
  background: linear-gradient(135deg, #1f1a2a 0%, #16141a 100%);
}

.ba-hero-vibrant {
  background: linear-gradient(135deg, #1a0f2e 0%, #2e1a0a 100%);
}

.ba-hero-plain {
  background: #141418;
}

.ba-hero-overlay {
  flex: 1;
}

.ba-fake-title-bar { padding: 4px 0; }

.ba-fake-title {
  height: 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  width: 60%;
  margin-bottom: 8px;
}

.ba-fake-sub {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  width: 40%;
}

.ba-fake-h1 {
  height: 14px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  width: 75%;
  margin-bottom: 10px;
}

.ba-fake-h2 {
  height: 9px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  width: 50%;
  margin-bottom: 16px;
}

.ba-fake-btn {
  height: 28px;
  background: var(--accent);
  border-radius: 100px;
  width: 100px;
  opacity: 0.85;
}

.ba-fake-btn-gray {
  height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  width: 90px;
}

.ba-fake-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 20px;
}

.ba-fake-box {
  height: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.ba-fake-list {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-fake-list-item {
  height: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.ba-fake-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 16px;
}

.ba-fake-product {
  height: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.ba-fake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 16px;
}

.ba-fake-card {
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.ba-card-img {
  background: linear-gradient(135deg, rgba(232,145,58,0.15), rgba(245,193,108,0.08));
}

.ba-fake-stylist-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 20px;
}

.ba-stylist-card {
  height: 64px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.ba-fake-schedule {
  padding: 16px 20px;
}

.ba-sched-header {
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 40%;
  margin-bottom: 12px;
}

.ba-sched-row {
  height: 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  margin-bottom: 8px;
}

.ba-fake-footer-bar {
  height: 32px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ba-builder-badge {
  position: absolute;
  bottom: 8px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ba-builder-badge small {
  font-size: 10px;
  color: rgba(138,134,128,0.7);
  display: block;
}

.ba-delivered-badge {
  position: absolute;
  bottom: 8px;
  left: 12px;
  background: rgba(232,145,58,0.15);
  border: 1px solid rgba(232,145,58,0.3);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* DIY Comparison */
.hiw-diy {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.diy-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.diy-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.diy-copy p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.diy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.diy-x {
  color: #f87171;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.diy-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.diy-pricing-box {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(232,145,58,0.12);
}

.diy-pricing-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.diy-pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.diy-pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 28px;
}

.diy-pricing-cta {
  display: block;
  background: var(--accent);
  color: #0C0C0E;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.diy-pricing-cta:hover { opacity: 0.88; }

/* CTA Section */
.hiw-cta {
  padding: 100px 24px;
}

.hiw-cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hiw-cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hiw-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hiw-cta-box p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hiw-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hiw-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0C0C0E;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.hiw-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.hiw-cta-secondary {
  color: var(--fg-muted);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.hiw-cta-secondary:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .ba-sides {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ba-arrow {
    padding: 0;
    justify-content: center;
    transform: rotate(90deg);
  }

  .diy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .diy-pricing-box { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hiw-hero { padding: 60px 20px 40px; }
  .hiw-hero h1 { font-size: 2rem; }
  .hiw-steps { padding: 80px 20px; }
  .hiw-before-after { padding: 80px 20px; }
  .hiw-diy { padding: 80px 20px; }
  .hiw-cta { padding: 80px 20px; }
}
