/* ==========================================================
   FORGED MARKETING — Main Stylesheet
   Brand: Black (#080808) · Gold (#F5A000) · White (#FFFFFF)
   ========================================================== */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --gold:          #F5A000;
  --gold-light:    #FFB833;
  --gold-dark:     #C47F00;
  --gold-glow:     rgba(245, 160, 0, 0.25);
  --gold-border:   rgba(245, 160, 0, 0.3);

  --bg:            #080808;
  --bg-2:          #0f0f0f;
  --bg-card:       #141414;
  --bg-elevated:   #1c1c1c;

  --white:         #FFFFFF;
  --text:          #E8E8E8;
  --text-muted:    #888888;
  --text-faint:    #444444;

  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;

  --shadow-card:   0 4px 32px rgba(0,0,0,0.6);
  --shadow-gold:   0 0 40px rgba(245,160,0,0.15);

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container:     1220px;
  --section-py:    96px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }
p.lead { font-size: 1.15rem; color: var(--text); }

.gold { color: var(--gold); }
.text-upper { text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

.section--dark  { background: var(--bg-2); }
.section--card  { background: var(--bg-card); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 64px;
}

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

.section__label::before,
.section__label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section__title { margin-bottom: 16px; }
.section__subtitle { font-size: 1.05rem; color: var(--text-muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,160,0,0.3);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(245,160,0,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
  padding: 12px 24px;
  font-size: 0.875rem;
}
.btn--ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

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

/* ── Navigation ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition),
              border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--transition);
}
.nav__logo:hover img { opacity: 0.85; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta { margin-left: 8px; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__mobile-link {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.nav__mobile-close:hover { color: var(--white); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(245,160,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 140px 80px;
  max-width: 840px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,160,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s ease forwards;
}

.hero__badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.4s ease forwards;
}

.hero__title .line-gold { color: var(--gold); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s ease forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s ease forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeSlideUp 0.9s 1s ease forwards;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__trust-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero__scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 40px;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}

/* ── About ───────────────────────────────────────────────── */
.about { background: var(--bg); }

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

.about__content {}

.about__body {
  margin-bottom: 32px;
}

.about__body p {
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about__value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__value-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,160,0,0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.about__value-text h4 { font-size: 1rem; margin-bottom: 2px; }
.about__value-text p { font-size: 0.875rem; margin: 0; }

.about__visual {
  position: relative;
}

.about__card-stack {
  position: relative;
  padding: 24px;
}

.about__main-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about__main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about__card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

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

.about__industry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about__industry-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.about__industry-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}

.about__industry-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__industry-pct {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.about__badge-float {
  position: absolute;
  bottom: -16px;
  right: 0px;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(245,160,0,0.4);
  text-align: center;
}

.about__badge-float strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

/* ── Services ────────────────────────────────────────────── */
.services { background: var(--bg-2); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

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

.service-card--featured {
  background: linear-gradient(135deg, #1a1400, #141414);
  border-color: var(--gold-border);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(245,160,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-card__icon {
  background: rgba(245,160,0,0.15);
  border-color: var(--gold);
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Process ─────────────────────────────────────────────── */
.process { background: var(--bg); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--gold-border));
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.process-step__number {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-faint);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), color var(--transition),
              background var(--transition), box-shadow var(--transition);
}

.process-step.revealed .process-step__number {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,160,0,0.05);
  box-shadow: 0 0 24px var(--gold-glow);
}

.process-step__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.process-step__body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Results / CRM ───────────────────────────────────────── */
.results { background: var(--bg-2); }

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

.results__content .section__header {
  text-align: left;
  margin-inline: 0;
}

.results__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.metric-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.metric-card__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card__label {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.results__visual {
  position: relative;
}

.crm-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.crm-panel__header {
  background: var(--bg-elevated);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.crm-panel__dots {
  display: flex;
  gap: 6px;
}

.crm-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.crm-panel__title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crm-panel__body { padding: 20px; }

.crm-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
}

.crm-lead:nth-child(1) { animation-delay: 0.5s; }
.crm-lead:nth-child(2) { animation-delay: 1s; }
.crm-lead:nth-child(3) { animation-delay: 1.5s; }
.crm-lead:nth-child(4) { animation-delay: 2s; }

.crm-lead__avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.crm-lead__info { flex: 1; min-width: 0; }

.crm-lead__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.crm-lead__detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.crm-lead__status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.crm-lead__status--hot {
  background: rgba(255,60,60,0.15);
  color: #ff6060;
}

.crm-lead__status--warm {
  background: rgba(245,160,0,0.15);
  color: var(--gold);
}

.crm-lead__status--new {
  background: rgba(60,200,100,0.15);
  color: #60d080;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.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: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

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

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,160,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.cta-section__sub {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.cta-section__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact { background: var(--bg); }

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

.contact__info .section__header {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,160,0,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact__detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Form ────────────────────────────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-grid--full { grid-column: 1 / -1; }

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

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(245,160,0,0.08);
}

.form-control::placeholder { color: var(--text-faint); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit { margin-top: 8px; }

.form-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.form-message--success {
  background: rgba(60,200,100,0.1);
  border: 1px solid rgba(60,200,100,0.3);
  color: #60d080;
}

.form-message--error {
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.3);
  color: #ff8080;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-block: 60px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition),
              color var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold-border);
  background: rgba(245,160,0,0.1);
  color: var(--gold);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__link:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-faint);
}

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

.footer__legal-link {
  font-size: 0.8rem;
  color: var(--text-faint);
  transition: color var(--transition);
}

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

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--left.revealed,
.reveal--right.revealed {
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Keyframe Animations ─────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(0.7); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,160,0,0.1); }
  50%       { box-shadow: 0 0 40px rgba(245,160,0,0.3); }
}

/* ── Utility Classes ─────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about__grid { gap: 48px; }
  .results__grid { gap: 48px; }
  .contact__grid { gap: 48px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

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

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

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

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

  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .hero__trust-divider { display: none; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .process__grid { grid-template-columns: 1fr; }
  .results__metrics { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
