/* ================================================================
   BUILDSCALE — Global Design System
   Color palette: Black / Orange (#FF5500) / Blue (#1B6FFF)
   Typography: Outfit (headings) + DM Sans (body)
   ================================================================ */

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

:root {
  /* Colors */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1C1C1C;
  --orange:        #FF5500;
  --orange-dim:    #CC4400;
  --orange-glow:   rgba(255, 85, 0, 0.18);
  --blue:          #1B6FFF;
  --blue-dim:      #1558CC;
  --blue-glow:     rgba(27, 111, 255, 0.15);
  --white:         #FFFFFF;
  --text-primary:  #F0F0F0;
  --text-muted:    #B2B2B2;
  --text-subtle:   #808080;
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 120px;
  --container:   1200px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8533 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: all 200ms var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__arrow {
  display: inline-block;
  transition: transform 200ms var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── Reveal Animations ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.nav__links a:hover { color: var(--white); }

.nav__cta { margin-left: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 250ms ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — lives OUTSIDE <nav> so it has its own stacking context */
.nav__mobile {
  position: fixed;
  inset: 0;
  top: 72px;
  background: #0A0A0A;
  padding: 40px 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
  overflow-y: auto;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav__mobile li .mobile-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease;
}

.nav__mobile li .mobile-link:hover { color: var(--orange); }
.nav__mobile li:last-child .mobile-link {
  border-bottom: none;
  margin-top: 24px;
  border-radius: var(--radius-sm);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--orange {
  width: 600px;
  height: 600px;
  background: var(--orange-glow);
  top: -200px;
  right: -100px;
}

.hero__glow--blue {
  width: 400px;
  height: 400px;
  background: var(--blue-glow);
  bottom: 0;
  left: -100px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.hero__sub strong { color: var(--text-primary); }

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  overflow: hidden;
  max-width: 700px;
}

.stat {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat__divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.trust-bar__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 24px;
  font-weight: 500;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 200ms ease;
}

.trust-logo:hover {
  border-color: var(--border-hover);
  color: var(--text-muted);
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem { background: var(--bg-primary); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

.problem__card {
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 250ms ease;
}

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

.problem__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.problem__card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.problem__card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.impact-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.impact-tag--red {
  background: rgba(255, 59, 59, 0.1);
  color: #FF6B6B;
  border: 1px solid rgba(255, 59, 59, 0.2);
}

.problem__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.problem__cta-text {
  font-size: 1rem;
  color: var(--text-muted);
}

.problem__cta-text strong { color: var(--white); }

/* ================================================================
   SERVICES
   ================================================================ */
.services { background: var(--bg-secondary); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon--orange {
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.2);
  color: var(--orange);
}

.service-card__icon--blue {
  background: rgba(27, 111, 255, 0.1);
  border: 1px solid rgba(27, 111, 255, 0.2);
  color: var(--blue);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid rgba(255, 85, 0, 0.3);
  flex-shrink: 0;
  position: relative;
}

.service-card__features li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3' stroke='%23FF5500' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.service-card__tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.services__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.services__footer-text p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.services__footer-text p strong { color: var(--white); }

/* ================================================================
   PROCESS / HOW IT WORKS
   ================================================================ */
.process { background: var(--bg-primary); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px;
  position: relative;
}

.process__step:first-child { padding-left: 0; }
.process__step:last-child { padding-right: 0; }

.process__step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 85, 0, 0.55);
  letter-spacing: -0.04em;
  line-height: 1;
}

.process__step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process__step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process__step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

.process__connector {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), var(--border));
  flex-shrink: 0;
  margin-top: 24px;
  transform: rotate(90deg);
  align-self: flex-start;
  display: none;
}

.process__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process__cta-note {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ================================================================
   WHY US
   ================================================================ */
.why-us { background: var(--bg-secondary); }

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-us__left .section-sub { margin-bottom: 40px; }

.why-us__right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 200ms ease;
}

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

.why-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--bg-primary); }

.testimonials .section-sub { margin-bottom: 56px; }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-card__stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after { content: '"'; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-card__author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(27, 111, 255, 0.1);
  color: var(--blue);
  border: 1px solid rgba(27, 111, 255, 0.2);
  letter-spacing: 0.02em;
}

/* ================================================================
   METRICS
   ================================================================ */
.metrics {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.metric-item {
  background: var(--bg-card);
  padding: 48px 40px;
  text-align: center;
  transition: background 200ms ease;
}

.metric-item:hover { background: var(--bg-card-hover); }

.metric-item__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  display: inline-block;
}

.metric-item__suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.metric-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
}

/* ================================================================
   CONTACT / BOOKING
   ================================================================ */
.contact { background: var(--bg-primary); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left .section-sub { margin-bottom: 40px; }

.contact__benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact__benefits li svg {
  color: var(--orange);
  flex-shrink: 0;
}

.contact__form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.contact__form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact__form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group select {
  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='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #FF4444;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-align: center;
  line-height: 1.5;
  margin-top: -4px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.3);
  color: var(--orange);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form Error */
.form-error {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 60, 60, 0.06);
  border: 1px solid rgba(255, 60, 60, 0.2);
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.form-error__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 60, 60, 0.12);
  border: 1px solid rgba(255, 60, 60, 0.3);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FF6B6B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.form-error h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FF6B6B;
  margin-bottom: 6px;
}

.form-error p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}

.footer__logo { margin-bottom: 0; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 200ms ease;
}

.footer__social a:hover {
  border-color: var(--border-hover);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

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

.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 200ms ease;
  display: block;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.83rem;
  color: var(--text-subtle);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.83rem;
  color: var(--text-subtle);
  transition: color 200ms ease;
}

.footer__legal a:hover { color: var(--text-muted); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }

  .services__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 48px; }

  .process__steps {
    flex-direction: column;
    gap: 0;
  }

  .process__step {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .process__step:last-child { border-bottom: none; }
  .process__step-num { font-size: 2rem; min-width: 48px; }
  .process__connector { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .hero__stats {
    flex-direction: column;
    max-width: 100%;
  }

  .stat__divider {
    width: auto;
    height: 1px;
  }

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

  .problem__card { padding: 28px 24px; }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item { padding: 32px 24px; }

  .services__footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__top { gap: 40px; }

  .why-us__right { border-radius: var(--radius-md); }

  .section-headline { font-size: clamp(1.75rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .metrics__grid { grid-template-columns: 1fr; }
  .metric-item__num { font-size: 2.5rem; }

  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .trust-bar__logos { gap: 12px; }
  .trust-logo { font-size: 0.72rem; padding: 6px 12px; }
}

/* ================================================================
   UTILITY — Smooth focus visible
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: rgba(255, 85, 0, 0.25);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ================================================================
   MODAL
   ================================================================ */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 300ms var(--ease-out);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  z-index: 1;
  flex-shrink: 0;
}

.modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.modal__info {
  padding: 52px 44px;
  background: linear-gradient(135deg, rgba(255,85,0,0.06) 0%, rgba(27,111,255,0.04) 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 16px;
}

.modal__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.modal__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.modal__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal__benefits li svg { color: var(--orange); flex-shrink: 0; }

.modal__form-wrap {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form row (phone + email side by side) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .modal__body { grid-template-columns: 1fr; }
  .modal__info {
    padding: 40px 32px 32px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .modal__form-wrap { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .modal { border-radius: var(--radius-md); }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal { max-height: 95vh; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .modal__info { padding: 32px 20px 24px; }
  .modal__form-wrap { padding: 24px 20px 32px; }
}

/* ================================================================
   ANIMATED PROBLEM GRAPHICS
   ================================================================ */

/* Shared graphic container */
.prob-graphic {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

/* ── Graphic 1: Browser ─────────────────────────────────────── */
.pg-browser {
  width: 160px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1A1A1A;
  overflow: hidden;
  flex-shrink: 0;
}

.pg-browser__chrome {
  background: #222;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pg-dot--r { background: #FF5F57; }
.pg-dot--y { background: #FFBD2E; }
.pg-dot--g { background: #28C840; }

.pg-url-bar {
  flex: 1;
  height: 10px;
  background: #2E2E2E;
  border-radius: 3px;
  margin-left: 4px;
}

.pg-browser__body {
  padding: 12px 10px;
  position: relative;
}

.pg-line {
  height: 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.08);
}
.pg-line--header { width: 70%; height: 12px; background: rgba(255,255,255,0.12); margin-bottom: 10px; }
.pg-line--text { width: 90%; }
.pg-line--short { width: 55%; }

.pg-warning-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FF4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: warnPulse 2s ease-in-out infinite;
}

@keyframes warnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

.pg-visitors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pg-visitor {
  font-size: 0.7rem;
  color: #FF6B6B;
  font-weight: 600;
  opacity: 0;
  transform: translateY(0) translateX(0);
  animation: visitorLeave 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  white-space: nowrap;
}

@keyframes visitorLeave {
  0%   { opacity: 0; transform: translateY(4px); }
  20%  { opacity: 1; transform: translateY(0); }
  70%  { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-16px); }
}

/* ── Graphic 2: Leads / Notifications ───────────────────────── */
.pg-phone-screen {
  width: 140px;
  min-height: 100px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1A1A1A;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.pg-notif {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 9px;
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0;
  animation: notifFloat 3.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.pg-notif svg { color: var(--orange); flex-shrink: 0; }

@keyframes notifFloat {
  0%    { opacity: 0; transform: translateY(6px); }
  15%   { opacity: 1; transform: translateY(0); }
  55%   { opacity: 1; transform: translateY(0); }
  80%   { opacity: 0; transform: translateY(-20px); }
  100%  { opacity: 0; transform: translateY(-20px); }
}

/* ── Graphic 3: Social post ─────────────────────────────────── */
.pg-social-post {
  width: 155px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1A1A1A;
  padding: 10px;
  overflow: hidden;
}

.pg-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pg-avatar-stub {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.pg-name-stub { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.pg-stub-line { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 80%; }
.pg-stub-line--short { width: 50%; }

.pg-post-image {
  height: 52px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.pg-post-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 6px;
}

.pg-stat-zero {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.pg-days-ago {
  font-size: 0.62rem;
  color: #FF5555;
  font-weight: 600;
  animation: daysAgoFlash 2.5s ease-in-out infinite;
}

@keyframes daysAgoFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Graphic 4: Clock ───────────────────────────────────────── */
.pg-clock-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-clock {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,85,0,0.4);
  position: relative;
  background: rgba(255,85,0,0.04);
  flex-shrink: 0;
}

.pg-tick {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  left: 50%;
  top: 50%;
}
.pg-tick--12 { transform: translate(-50%, -50%) translateY(-28px); }
.pg-tick--3  { transform: translate(-50%, -50%) translateX(28px); }
.pg-tick--6  { transform: translate(-50%, -50%) translateY(28px); }
.pg-tick--9  { transform: translate(-50%, -50%) translateX(-28px); }

.pg-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.pg-hand--hour {
  width: 3px;
  height: 18px;
  background: var(--orange);
  margin-left: -1.5px;
  animation: spinHour 4s linear infinite;
}

.pg-hand--min {
  width: 2px;
  height: 24px;
  background: var(--white);
  margin-left: -1px;
  opacity: 0.7;
  animation: spinMin 1.2s linear infinite;
}

.pg-center-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes spinHour { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinMin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.pg-overdue-tasks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pg-task {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pg-task-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF4444;
  flex-shrink: 0;
  animation: taskDotPulse 1.8s ease-in-out infinite;
}

@keyframes taskDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pg-task-overdue {
  margin-left: auto;
  color: #FF5555;
  font-size: 0.62rem;
  font-weight: 700;
}

/* ================================================================
   CTA SECTION (replaces contact section)
   ================================================================ */
.cta-section {
  background: var(--bg-secondary);
}

.cta-section__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,85,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner .section-label { justify-content: center; }

.cta-section__inner .section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-section__note {
  font-size: 0.83rem;
  color: var(--text-subtle);
}

@media (max-width: 768px) {
  .cta-section__inner { padding: 48px 24px; }
}

