/* ============================================
   DOSSDAN GROUP — STYLES
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #1a2a44;
  --accent: #c9a84c;
  --accent-light: #e0c875;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #e8eaef;
  --gray-300: #c5c9d3;
  --gray-400: #8a90a0;
  --gray-500: #6b7280;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --text-body: #374151;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.proof-bar {
  background: var(--accent);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  text-align: center;
}

.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-divider {
  color: var(--navy);
  opacity: 0.3;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--navy);
}

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.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(--navy);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 110px 0 60px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 50%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--navy-mid);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 480px;
  margin-left: auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.5;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overlay-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.overlay-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.5px;
}

.hero-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 400;
}

.stat-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* ============================================
   PAIN POINTS
   ============================================ */

.pain-points {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.pain-header {
  text-align: center;
  margin-bottom: 60px;
}

.pain-header h2 {
  color: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  justify-content: center;
}

.pain-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pain-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.pain-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.pain-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--gray-200);
  line-height: 1.5;
}

/* ============================================
   APPROACH
   ============================================ */

.approach {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.approach h2 {
  margin-bottom: 60px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.approach-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.approach-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.approach-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--navy);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.approach-card p {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
  margin-top: auto;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 100px 0;
  background: var(--gray-100);
}

.services .section-tag {
  text-align: center;
}

.services > .container > h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
  transform: translateY(-6px);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}

.service-icon--ai {
  color: var(--accent);
}

.service-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card h3 a:hover {
  color: var(--accent);
}

.service-card p {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
  margin-top: auto;
}

.service-card--ai {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--white) 0%, #fefaf0 100%);
}

.services-cta {
  text-align: center;
}

.services-cta p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.process h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--navy-light);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -20px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  opacity: 0.5;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.5;
}

/* Single-step process sections (Our Process page) */
.process-grid:has(.process-step:only-child) {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.process-grid:has(.process-step:only-child)::before {
  display: none;
}
.process-grid:has(.process-step:only-child) .process-step::after {
  display: none;
}
.process-grid:has(.process-step:only-child) .process-step {
  text-align: left;
}
.process-grid:has(.process-step:only-child) .process-step p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Light background variant for process sections */
.process[style*="gray-100"] {
  color: var(--navy);
}
.process[style*="gray-100"] h2 {
  color: var(--navy);
}
.process[style*="gray-100"] .process-step h3 {
  color: var(--navy);
}
.process[style*="gray-100"] .process-step p {
  color: #1e293b;
}
.process[style*="gray-100"] .process-num {
  background: var(--white);
}

/* ============================================
   WHO WE SERVE
   ============================================ */

.who-we-serve {
  padding: 100px 0;
  background: var(--white);
}

.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.serve-content {
  max-width: 100%;
}

.serve-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.serve-list {
  list-style: none;
  margin-bottom: 36px;
}

.serve-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.serve-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.serve-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.serve-stat-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: var(--transition);
}

.serve-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.serve-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.serve-stat-label {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============================================
   RESULTS / CASE STUDIES
   ============================================ */

.results {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.results .section-tag {
  text-align: center;
}

.results h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.results-grid:has(.result-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.result-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.result-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.result-client {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.result-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.result-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
}

.result-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-before,
.result-after {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-before {
  color: var(--gray-400);
}

.result-after {
  color: #4ade80;
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.result-arrow {
  flex-shrink: 0;
}

.result-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.result-detail {
  font-size: 0.88rem;
  color: var(--gray-200);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 100px 0;
  background: var(--gray-100);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.9rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-body);
}

/* ============================================
   LEAD MAGNET
   ============================================ */

.lead-magnet {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a44 100%);
  color: var(--white);
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.lead-magnet h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lead-magnet-desc {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lead-magnet-list {
  list-style: none;
}

.lead-magnet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--gray-200);
}

.lead-magnet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.lead-magnet-form-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-magnet-form input {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.lead-magnet-form input::placeholder {
  color: var(--gray-400);
}

.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.lead-magnet-form .btn {
  width: 100%;
  text-align: center;
}

.lead-magnet-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}
.lead-magnet-success {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  padding: 24px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 768px) {
  .lead-magnet-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about .section-tag {
  color: var(--accent);
}

.about h2 {
  color: var(--white);
}

.about-desc {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight strong {
  font-size: 0.85rem;
  color: var(--white);
}

.highlight span {
  font-size: 0.8rem;
  color: var(--gray-300);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about .btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.about .btn-primary:hover {
  background: var(--gray-200);
}

.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.about-linkedin svg {
  width: 20px;
  height: 20px;
}

.about-linkedin:hover {
  color: var(--white);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 24px 36px;
  text-align: center;
  width: 340px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-photo-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.about-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.about-card > p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 100px 0;
  background: var(--gray-100);
  text-align: center;
}

.faq h2 {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
}

/* ============================================
   INSIGHTS
   ============================================ */

.insights {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.insights h2 {
  margin-bottom: 60px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.insight-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12);
  transform: translateY(-4px);
}

.insight-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.insight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.insight-card p {
  font-size: 0.9rem;
  color: #1e293b;
  line-height: 1.6;
  flex: 1;
}

.insight-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.insight-card:hover .insight-link {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  padding: 120px 0;
  background: var(--gray-100);
  color: var(--text);
  text-align: center;
}

.final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 60px 0 32px;
  background: #060d18;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-location svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  color: var(--white);
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stats-row {
    flex-direction: row;
    justify-content: space-around;
  }
  .approach-grid { grid-template-columns: 1fr; }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before { display: none; }
  .process-step:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .proof-bar { font-size: 0.7rem; padding: 8px 16px; }
  .proof-bar-inner { gap: 8px; }
  .proof-divider { display: none; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding: 150px 0 60px;
    min-height: auto;
  }

  .hero-stats-row {
    flex-direction: column;
    padding: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Exit-Intent Popup ── */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.active {
  display: flex;
}
.exit-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(4px);
}
.exit-popup-box {
  position: relative;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.exit-popup-box .section-tag {
  margin-bottom: 8px;
  color: var(--accent);
}
.exit-popup-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 12px;
}
.exit-popup-box p {
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.exit-popup-dismiss {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.exit-popup-dismiss:hover { color: #1e293b; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: var(--gray-100);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  color: var(--gray-400);
}
.breadcrumb-current {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================
   BLOG POST STYLES
   ============================================ */
.blog-post { padding: 2rem 0 4rem; }
.post-header { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.post-header h1 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.post-category {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 1rem;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.post-featured-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.post-layout {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.post-toc {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.post-toc h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}
.post-toc ul { list-style: none; }
.post-toc li { margin-bottom: 0.5rem; }
.post-toc a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
}
.post-toc a:hover { color: var(--accent); }
.post-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-body);
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.post-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }
.post-content a { color: var(--accent); }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gray-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.post-content th, .post-content td {
  padding: 0.75rem;
  border: 1px solid var(--gray-200);
  text-align: left;
}
.post-content th {
  background: var(--gray-100);
  font-weight: 600;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 3rem auto;
  max-width: 800px;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.share-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
}
.share-linkedin { background: #0077b5; }
.share-twitter { background: #1da1f2; }
.share-btn:hover { opacity: 0.9; }
.post-cta-box {
  max-width: 800px;
  margin: 2rem auto 0;
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.post-cta-box h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.post-cta-box p { color: var(--gray-300); margin-bottom: 1.5rem; }

/* Related Articles */
.post-content h2:last-of-type + ul {
  list-style: none;
  padding: 0;
}
.post-content h2:last-of-type + ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.post-content h2:last-of-type + ul li:last-child {
  border-bottom: none;
}
.post-content h2:last-of-type + ul li a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.post-content h2:last-of-type + ul li a:hover {
  color: var(--accent);
}

/* Related Reading (Service Pages) */
.related-reading {
  padding: 4rem 0;
  background: var(--gray-100);
  text-align: center;
}
.related-reading h2 {
  margin-bottom: 2rem;
}
.related-reading .approach-card h3 a {
  color: var(--navy);
  text-decoration: none;
}
.related-reading .approach-card h3 a:hover {
  color: var(--accent);
}

/* ============================================
   SERVICE PAGE HERO VARIANT
   ============================================ */
.hero--service {
  padding-top: 140px;
  padding-bottom: 4rem;
}
.hero--service .hero-container {
  display: block;
  text-align: center;
}
.hero--service .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero--service .hero-sub {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.hero--service .hero-cta-group {
  justify-content: center;
}
.hero--service .hero-stats-row {
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .post-header h1 { font-size: 1.75rem; }
  .post-content { font-size: 1rem; }
  .post-meta { flex-direction: column; gap: 0.25rem; }
  .post-cta-box { padding: 2rem 1.5rem; }
}
