/* ============================================================
   STRATEDGE — Template 4 style.css — Champagne Cream
   Design: Dark modern consulting, Geist/Plus Jakarta Sans
   Accent: --ac (#e8d4b0 Champagne Cream) — swap for colorways
   ============================================================ */

:root {
  /* Background layers */
  --bg:      #0a0a0a;      /* deepest, page bg */
  --bg2:     #121212;      /* dark-gray-900 sections */
  --bg3:     #181818;      /* dark-gray-800 sections */
  --bg4:     #1e1e1e;      /* cards on darker sections */
  --bg5:     #242424;      /* elevated cards */
  
  /* Accent — Champagne Cream */
  --ac:      #e8d4b0;
  --acl:     #f0e0c2;
  --acd:     rgba(232,212,176,0.10);
  --acb:     rgba(232,212,176,0.28);
  --acglow:  rgba(232,212,176,0.15);
  
  /* Text */
  --white:   #ffffff;
  --text:   #e5e5e5;
  --muted:  #a3a3a3;
  --muted2: #6b6b6b;
  --border: #262626;
  --border2:#333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h-font {
  font-family: 'Geist', 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; letter-spacing: -0.03em; }
.h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

a { color: inherit; text-decoration: none; }

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

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section.dark-900 { background: var(--bg2); }
.section.dark-800 { background: var(--bg3); }
.section.dark-base { background: var(--bg); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nav-brand-mark {
  width: 28px; height: 28px;
  background: var(--ac);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-menu {
  display: flex;
  gap: 42px;
  list-style: none;
}
.nav-menu a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--white);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--ac);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--acglow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}
.btn-outline:hover {
  border-color: var(--ac);
  color: var(--ac);
}
.btn-accent {
  background: var(--ac);
  color: var(--bg);
}
.btn-accent:hover {
  background: var(--acl);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--acglow);
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* Badge with pulsing dot */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--ac);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--ac);
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,212,176,0.55); }
  50% { box-shadow: 0 0 0 5px rgba(232,212,176,0); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top left, var(--acglow), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-heading {
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero-summary {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 60%, #050505 100%);
  border: 1px solid var(--border);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, var(--acglow), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(232,212,176,0.08), transparent 50%);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-visual-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar-1 { background: linear-gradient(135deg, #c9a961, #8a6f3a); }
.hero-avatar-2 { background: linear-gradient(135deg, #a8b8c8, #556878); }
.hero-avatar-3 { background: linear-gradient(135deg, #b89898, #6f5555); }
.hero-visual-text {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: 'Geist', sans-serif;
}

/* ============================================================
   STATS & LOGOS SECTION
   ============================================================ */
.stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.stats-statement {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.015em;
}
.stats-statement .accent { color: var(--ac); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.stat-card {
  padding: 24px 0;
}
.stat-number {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 240px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.section-header .h2 { margin-top: 20px; }
.section-header-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color 0.3s ease;
}
.service-card:hover { border-color: var(--border2); }
.service-card.reverse .service-card-body { order: 2; }
.service-card.reverse .service-card-visual { order: 1; }

.service-number {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: var(--ac);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service-summary {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.service-deliverables-label {
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.service-deliverables li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text);
  font-size: 0.94rem;
  border-bottom: 1px solid var(--border);
}
.service-deliverables li:last-child { border-bottom: none; }
.service-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ac);
  opacity: 0.7;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-cta:hover { gap: 14px; color: var(--ac); }
.service-cta-arrow {
  transition: transform 0.25s ease;
}
.service-cta:hover .service-cta-arrow { transform: translateX(4px); }

.service-card-visual {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  position: relative;
  border: 1px solid var(--border);
}
.service-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, var(--acglow), transparent 60%);
}
.service-card-visual::after {
  content: attr(data-service);
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   WHY CHOOSE US TABS
   ============================================================ */
.tabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tab-item {
  padding: 24px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  text-align: left;
  color: inherit;
  font-family: inherit;
  width: 100%;
}
.tab-item:hover { background: var(--bg4); }
.tab-item.active {
  background: var(--bg4);
  border-color: var(--border2);
}
.tab-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  transition: margin-bottom 0.3s ease;
}
.tab-item.active .tab-item-header { margin-bottom: 12px; }

.tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg5);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.tab-item.active .tab-icon {
  background: var(--ac);
  color: var(--bg);
  border-color: var(--ac);
}
.tab-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.tab-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-left: 60px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.tab-item.active .tab-summary {
  max-height: 200px;
  opacity: 1;
  margin-top: 4px;
}
.tab-visual {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  position: relative;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.tab-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, var(--acglow), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(232,212,176,0.05), transparent 60%);
}
.tab-visual::after {
  content: attr(data-label);
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.process-step.reverse .process-body { order: 2; }
.process-step.reverse .process-visual { order: 1; }
.process-visual {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, var(--acglow), transparent 55%);
}
.process-num {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: var(--ac);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.process-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.process-summary {
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: var(--border2); }
.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  flex-shrink: 0;
}
.testimonial-avatar-1 { background: linear-gradient(135deg, #4a3a2a, #2a2018); }
.testimonial-avatar-2 { background: linear-gradient(135deg, #2a3a4a, #18242a); }
.testimonial-avatar-3 { background: linear-gradient(135deg, #4a2a2a, #2a1818); }
.testimonial-avatar-4 { background: linear-gradient(135deg, #3a4a3a, #182a20); }
.testimonial-body { display: flex; flex-direction: column; }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--ac);
}
.testimonial-quote {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-name {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-role {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-header .h2 { margin-top: 20px; margin-bottom: 28px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--border2); }
.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 24px; height: 24px;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--ac); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: 
    radial-gradient(ellipse at center, var(--acglow), transparent 60%),
    var(--bg2);
  text-align: center;
}
.cta-heading {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 24px auto 40px;
  max-width: 800px;
  line-height: 1.15;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-block { max-width: 320px; }
.footer-brand-block .nav-brand { margin-bottom: 20px; }
.footer-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg4);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  color: var(--bg);
  background: var(--ac);
  border-color: var(--ac);
}
.footer-menu-heading {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--ac); }
.footer-bigname {
  font-family: 'Geist', sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-align: center;
  margin: 40px 0;
  opacity: 0.98;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--muted); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--ac); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse at top, var(--acglow), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .h1 { margin: 24px 0 24px; }
.about-hero-summary {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.founder-visual {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.founder-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 40% 30%, var(--acglow), transparent 55%);
}
.founder-visual::after {
  content: 'FOUNDER PHOTO';
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
}
.founder-body .badge { margin-bottom: 24px; }
.founder-name {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.founder-role {
  color: var(--ac);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-family: 'Geist', sans-serif;
}
.founder-bio {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 32px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}
.value-card:hover { border-color: var(--border2); }
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg5);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--ac);
  margin-bottom: 24px;
}
.value-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.contact-info-item {
  padding: 24px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg5);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--ac);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info-value {
  color: var(--white);
  font-size: 1rem;
}
.contact-info-value a {
  color: var(--white);
  transition: color 0.2s ease;
}
.contact-info-value a:hover { color: var(--ac); }

.contact-form {
  padding: 40px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.contact-form-title {
  font-family: 'Geist', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-summary {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ac);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
}

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 80px; }
  .hero-grid,
  .stats-header,
  .section-header,
  .service-card,
  .process-step,
  .tabs-grid,
  .faq-grid,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-card.reverse .service-card-body,
  .service-card.reverse .service-card-visual,
  .process-step.reverse .process-body,
  .process-step.reverse .process-visual { order: initial; }
  .tab-visual { position: relative; top: 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .stat-card:last-child { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg2);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-toggle { display: grid; place-items: center; }
  .nav-right-desktop { display: none; }
  .service-card, .process-step, .contact-form { padding: 28px 24px; }
  .testimonial-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .testimonial-avatar { width: 80px; height: 80px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
