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

:root {
  /* Real Direct Focus brand — mountain blue palette */
  --brand-blue: #6495ED;
  --brand-blue-dark: #4A78D6;
  --brand-blue-light: #89B4F7;
  --navy-900: #0c1a2e;
  --navy-800: #111d32;
  --navy-700: #162540;
  --navy-600: #1e3050;
  --blue-500: #4A78D6;
  --blue-400: #6495ED;
  --blue-300: #89B4F7;
  --accent: #6495ED;
  --accent-hover: #4A78D6;
  --accent-light: #89B4F7;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --radius-lg: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue-400);
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.6;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(100, 149, 237, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Dark section variants */
.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: var(--gray-400);
}

.section-dark .section-tag {
  color: var(--accent-light);
  background: rgba(100, 149, 237, 0.12);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(100, 149, 237, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(100, 149, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(12, 26, 46, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo:hover {
  color: var(--white);
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

.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(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, #0f2847 40%, #1a3a6a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 149, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 149, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 70%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 149, 237, 0.4), transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 120, 214, 0.2), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(100, 149, 237, 0.1);
  border: 1px solid rgba(100, 149, 237, 0.2);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== SERVICES (light bg) ===== */
.services {
  padding: 96px 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(100, 149, 237, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 149, 237, 0.08);
  border-radius: 10px;
  color: var(--blue-500);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.service-card-cta {
  background: linear-gradient(135deg, rgba(100, 149, 237, 0.06) 0%, rgba(74, 120, 214, 0.08) 100%);
  border-color: var(--blue-400);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-cta h3 {
  color: var(--blue-500);
}

.service-card-cta .btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* ===== RESULTS (dark bg) ===== */
.results {
  padding: 96px 0;
  background: var(--navy-900);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}

.result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.2s ease;
}

.result-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

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

.result-industry {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  background: rgba(100, 149, 237, 0.12);
  padding: 5px 12px;
  border-radius: 6px;
}

.result-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 6px;
}

.result-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.result-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.result-detail {
  padding-left: 16px;
  border-left: 2px solid rgba(100, 149, 237, 0.3);
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  display: block;
  margin-bottom: 6px;
}

.result-detail p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.result-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.outcome-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  line-height: 1.4;
}

.outcome-tag a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.outcome-green {
  color: var(--green-400);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.outcome-blue {
  color: var(--blue-300);
  background: rgba(100, 149, 237, 0.1);
  border: 1px solid rgba(100, 149, 237, 0.2);
}

/* ===== EXPERTISE / INDUSTRIES (light bg) ===== */
.expertise {
  padding: 96px 0;
  background: var(--gray-50);
}

.expertise-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.expertise-block-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-500);
  margin-bottom: 24px;
}

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

.industry-tag {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.industry-tag:hover {
  border-color: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(100, 149, 237, 0.08);
}

.industry-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
  min-width: 24px;
  text-align: center;
}

.industry-tag strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.industry-tag span {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

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

.skill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.skill-item:hover {
  border-color: var(--blue-400);
  background: rgba(100, 149, 237, 0.03);
}

.skill-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.skill-item span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ===== SOCIAL PROOF (gradient bg) ===== */
.social-proof {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-500) 0%, #3a5fbc 50%, var(--navy-900) 100%);
  color: var(--white);
}

.social-proof .section-header h2 {
  color: var(--white);
}

.social-proof .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.social-proof .section-tag {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

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

.credential-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.credential-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.credential-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent-light);
}

.credential-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.credential-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Certifications bar */
.cert-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.cert-badge .cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

/* Testimonials */
.testimonials {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  font-weight: 700;
}

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

.testimonial-role {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-role a {
  color: var(--accent-light);
}

/* ===== ABOUT (light bg) ===== */
.about {
  padding: 96px 0;
  background: var(--white);
}

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

.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
  color: var(--gray-900);
}

.about-content > p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-marker {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.about-point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.about-point span {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Capability Stack Visual */
.capability-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cap-layer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
}

.cap-layer:hover {
  transform: translateX(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cap-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.cap-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-family: var(--mono);
}

.cap-discover {
  background: rgba(100, 149, 237, 0.05);
  border-color: rgba(100, 149, 237, 0.15);
}

.cap-analyze {
  background: rgba(74, 120, 214, 0.05);
  border-color: rgba(74, 120, 214, 0.15);
}

.cap-build {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.15);
}

.cap-sustain {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.15);
}

/* ===== CONTACT (dark box) ===== */
.contact {
  padding: 96px 0;
  background: var(--gray-100);
}

.contact-inner {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 64px;
}

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

.contact-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--white);
}

.contact-content > p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-content .btn {
  margin-bottom: 16px;
}

.contact-response {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(100, 149, 237, 0.15);
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
}

.form-note a {
  color: var(--accent-light);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

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

.footer-links-secondary {
  width: 100%;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
}

.footer-divider {
  color: var(--gray-600);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
  width: 100%;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .contact-inner {
    padding: 48px;
  }

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

  .result-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(12, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .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 {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

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

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

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

  .cert-bar {
    gap: 10px;
  }

  .result-card {
    padding: 28px;
  }

  .contact-inner {
    padding: 32px;
  }

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

  .services,
  .results,
  .expertise,
  .social-proof,
  .about,
  .contact {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 16px;
  }

  .contact-inner {
    padding: 24px;
  }
}
