/* ============================================
   BusinessIQ — Premium Consulting Website
   ============================================ */

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

:root {
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --light-gray: #F5F4F0;
  --mid-gray: #E8E6E1;
  --text-gray: #6B6B6B;
  --dark: #1A1A1A;
  --darker: #111111;
  --black: #000000;
  --gold: #BFA467;
  --gold-light: #D4BC82;
  --gold-dark: #A08B55;
  --gold-subtle: rgba(191, 164, 103, 0.08);
  --gold-glow: rgba(191, 164, 103, 0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--mid-gray);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
  border-radius: 8px;
}

/* --- SECTION UTILITIES --- */
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--gold-subtle);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.text-gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto;
}

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

.section-divider {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mid-gray), transparent);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-highlight {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-glow);
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--mid-gray);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

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

/* --- DASHBOARD MOCKUP --- */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--darker);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

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

.dashboard-dots span:first-child { background: #FF5F57; }
.dashboard-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-dots span:nth-child(3) { background: #28C840; }

.dashboard-title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.dashboard-body {
  padding: 16px;
  background: var(--darker);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.dash-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.dash-metric-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 6px;
}

.dash-metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.dash-metric-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}

.bar-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.dash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-chart-header span:first-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.chart-badge {
  font-size: 0.6rem;
  font-weight: 600;
  color: #28C840;
  background: rgba(40, 200, 64, 0.12);
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-area {
  height: 80px;
}

.line-chart {
  width: 100%;
  height: 100%;
}

.dash-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
}

.dash-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(191,164,103,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 8px;
}

.dash-small-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.dash-small-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
}

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

.about-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.about-philosophy-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-deliverables {
  margin-bottom: 28px;
}

.about-deliverables > p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.deliverable-item:hover {
  background: var(--gold-subtle);
  transform: translateX(4px);
}

.deliverable-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.deliverable-item span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.about-closing {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
}

.about-closing strong {
  color: var(--gold-dark);
}

/* --- Report Mockup (About Section) --- */
.about-visual {
  position: relative;
}

.report-mockup {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.report-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 500;
}

.report-logo-small {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(191,164,103,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

.report-body {
  padding: 24px;
}

.report-title-block {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.report-doc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.report-doc-subtitle {
  font-size: 0.78rem;
  color: var(--text-gray);
}

.report-section {
  margin-bottom: 20px;
}

.report-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.report-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-line {
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
}

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

.finding-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.finding-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.finding-green { background: #28C840; }
.finding-gold { background: var(--gold); }

.finding-bar {
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
}

.report-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.mini-bar {
  flex: 1;
  background: var(--light-gray);
  border-radius: 3px 3px 0 0;
  transition: var(--transition);
}

.mini-bar-gold {
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}

.report-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--light-gray);
  font-size: 0.65rem;
  color: var(--text-gray);
  font-weight: 500;
}

.about-visual-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gold-glow);
  filter: blur(80px);
  top: -40px;
  right: -40px;
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

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

.service-report-visual {
  padding: 20px;
  background: var(--darker);
  border-bottom: 2px solid var(--gold);
}

.srv-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.srv-doc-icon {
  color: rgba(255,255,255,0.3);
}

.srv-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191,164,103,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.srv-visual-body {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service Card Visuals */
.srv-chart-radar {
  width: 110px;
  height: 110px;
}

.srv-checklist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.srv-check-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.srv-checked .srv-check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.srv-check-line {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

.srv-checked .srv-check-line {
  background: rgba(255,255,255,0.15);
}

.srv-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.srv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
}

.srv-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 80px;
  width: 100%;
  padding: 0 8px;
}

.srv-bar-group {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100%;
}

.srv-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}

.srv-bar-a {
  background: var(--gold);
}

.srv-bar-b {
  background: rgba(255,255,255,0.15);
}

.srv-bar-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
}

.srv-bar-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.legend-a { background: var(--gold); }
.legend-b { background: rgba(255,255,255,0.15); }

/* Globe */
.srv-globe {
  display: flex;
  justify-content: center;
}

.srv-globe-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(191,164,103,0.3);
  position: relative;
  overflow: hidden;
}

.srv-globe-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.srv-globe-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.srv-globe-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(191,164,103,0.15);
}

.srv-globe-line-2 {
  top: auto;
  left: 50%;
  width: 1px;
  height: 100%;
  top: 0;
}

/* Matrix */
.srv-matrix {
  width: 100%;
}

.srv-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.srv-matrix-cell {
  aspect-ratio: 1;
  border-radius: 4px;
}

.srv-cell-low { background: rgba(255,255,255,0.04); }
.srv-cell-med { background: rgba(255,255,255,0.08); }
.srv-cell-high { background: rgba(191,164,103,0.15); }
.srv-cell-gold { background: rgba(191,164,103,0.35); }

.srv-matrix-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Slides */
.srv-slides {
  display: flex;
  gap: 6px;
  perspective: 400px;
}

.srv-slide {
  width: 70px;
  height: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 6px;
  transition: var(--transition);
}

.srv-slide-2 {
  transform: scale(1.05);
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-glow);
}

.srv-slide-title-bar {
  height: 4px;
  width: 60%;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 6px;
  opacity: 0.6;
}

.srv-slide-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.srv-slide-line {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.srv-slide-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 10px);
}

.srv-mini-pie {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg 120deg, rgba(255,255,255,0.1) 120deg 240deg, rgba(255,255,255,0.05) 240deg);
}

/* Service Content */
.service-title {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: 100px 0;
}

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

.benefit-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  background: var(--white);
}

.benefit-item:hover {
  border-color: var(--gold-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   MODEL (Flow Diagram)
   ============================================ */
.model {
  padding: 100px 0;
  background: var(--off-white);
}

.model-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.model-flow-mobile {
  display: none;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-md);
  min-width: 140px;
  transition: var(--transition);
}

.flow-step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.flow-step-active {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.flow-step-final {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.flow-step-final .flow-label { color: var(--gold); }
.flow-step-final .flow-sublabel { color: rgba(255,255,255,0.5); }

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

.flow-step-active .flow-icon {
  background: var(--gold);
  color: var(--white);
}

.flow-step-final .flow-icon {
  background: rgba(191,164,103,0.15);
  color: var(--gold);
}

.flow-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}

.flow-sublabel {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
}

.flow-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  padding: 0 16px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1.5px solid var(--gold-glow);
}

.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.connector-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--mid-gray), var(--gold), var(--mid-gray));
}

/* ============================================
   FOUNDER
   ============================================ */
.founder {
  padding: 100px 0;
  background: var(--off-white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15));
}

.founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.founder-accent-line {
  position: absolute;
  bottom: -8px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.founder-credential {
  font-family: 'Inter', sans-serif;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--text-gray);
}

.founder-lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.founder-industries {
  margin-bottom: 28px;
}

.founder-industries h4,
.founder-approach h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tags span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
}

.industry-tags span:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.founder-approach {
  margin-bottom: 24px;
}

.approach-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.approach-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.founder-focus {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--mid-gray);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(191,164,103,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(191,164,103,0.06) 0%, transparent 50%);
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta .btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

.cta .btn-primary::before {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.cta .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(191,164,103,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--darker);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo-white {
  filter: brightness(0) invert(1);
}

.footer .logo-text {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col p a {
  color: rgba(255,255,255,0.5);
}

.footer-col p a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .dashboard-mockup {
    max-width: 520px;
    margin: 0 auto;
  }

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

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

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

  .model-flow {
    display: none;
  }

  .model-flow-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow-step-m {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 400px;
  }

  .flow-icon-m {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
  }

  .flow-icon-m-active {
    background: var(--gold);
    color: var(--white);
  }

  .flow-icon-m-final {
    background: var(--dark);
    color: var(--gold);
  }

  .flow-text-m strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 2px;
  }

  .flow-text-m span {
    font-size: 0.82rem;
    color: var(--text-gray);
  }

  .flow-connector-m {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--gold-glow), var(--gold), var(--gold-glow));
  }

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

  .founder-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .process-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .process-step {
    flex: 1 1 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

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

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

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

  .approach-items {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about, .services, .benefits, .model, .process, .founder { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 100px 0 48px; }
  .cta { padding: 80px 0; }

  .dash-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dash-metric-value {
    font-size: 1.1rem;
  }
}
