/* ============================================================
   BAXTER CONSULTING SERVICES — Global Stylesheet
   Brand Colors: Charcoal #2a2d35 | Purple #8b5cf6 | Teal #10b981
   ============================================================ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --color-bg:          #0f1117;
  --color-surface:     #1a1d26;
  --color-surface-2:   #232733;
  --color-border:      rgba(255,255,255,0.08);
  --color-text:        #e2e8f0;
  --color-text-muted:  #94a3b8;
  --color-purple:      #8b5cf6;
  --color-purple-dark: #7c3aed;
  --color-purple-light:#a78bfa;
  --color-teal:        #10b981;
  --color-teal-dark:   #059669;
  --color-teal-light:  #34d399;
  --gradient-brand:    linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
  --gradient-hero:     linear-gradient(135deg, #0f1117 0%, #1a1025 50%, #0a1f18 100%);
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:         0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:         0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow-purple:0 0 40px rgba(139,92,246,0.25);
  --shadow-glow-teal:  0 0 40px rgba(16,185,129,0.25);
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --radius-xl:         32px;
  --transition:        all 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height:        72px;
  --font-body:         'Inter', system-ui, sans-serif;
  --font-display:      'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: #ffffff;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ─── GRADIENT TEXT ─────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GRADIENT LINE ─────────────────────────────────────────── */
.gradient-line {
  width: 64px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.section-header.centered .gradient-line { margin: 0 auto 1.5rem; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible { outline: 2px solid var(--color-purple); outline-offset: 3px; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--color-purple);
  color: var(--color-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139,92,246,0.2);
}

.btn-teal {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.5);
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow-purple);
}
.card:hover::before { opacity: 0.04; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 1.5rem;
}
.navbar.scrolled {
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease;
}
.navbar-logo:hover img {
  transform: scale(1.18);
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.55)) drop-shadow(0 0 20px rgba(16,185,129,0.3));
}
.navbar-logo:hover .navbar-logo-text {
  color: #fff;
}
.navbar-logo:hover .navbar-logo-text span {
  color: var(--color-teal);
}
.navbar-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.navbar-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 99px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2rem);
}
.nav-link.active { color: #fff; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,17,23,0.97);
  backdrop-filter: blur(20px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav-link {
  font-size: 1.75rem;
  font-family: var(--font-display);
  padding: 0.75rem 2rem;
}
.mobile-menu .nav-link::after { display: none; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(139,92,246,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-overlay {
  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: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--color-purple-light);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-brand-name {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-body);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-card-bg {
  position: absolute;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.hero-card-bg.c1 {
  width: 85%; height: 85%;
  top: 8%; right: -6%;
  transform: rotate(4deg);
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(16,185,129,0.06));
}
.hero-card-bg.c2 {
  width: 75%; height: 75%;
  top: 14%; left: -6%;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(139,92,246,0.08));
}
.hero-main-card {
  position: relative;
  z-index: 2;
  background: var(--color-surface);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
}
.hero-main-card-logo {
  width: 140px;
  margin: 0 auto 1.5rem;
}
.hero-card-divider {
  height: 1px;
  background: var(--color-border);
  margin: 1.5rem 0;
}
.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-card-service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero-card-service .icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.icon-purple { background: rgba(139,92,246,0.15); }
.icon-teal   { background: rgba(16,185,129,0.15); }

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.2);
  box-shadow: var(--shadow-md), var(--shadow-glow-purple);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(16,185,129,0.1));
  border: 1px solid rgba(139,92,246,0.2);
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── WHY BCS / VALUE PROP ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  filter: brightness(0.85) saturate(1.1);
}
.why-image-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.why-image-badge-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.why-image-badge-text { font-size: 0.8rem; }
.why-image-badge-text strong { display: block; font-size: 0.925rem; color: #fff; margin-bottom: 0.1rem; }
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-pillar-num {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-purple-light);
  flex-shrink: 0;
}
.why-pillar-body h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.why-pillar-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(16,185,129,0.08) 100%);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 40%, rgba(139,92,246,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 75% 60%, rgba(16,185,129,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: 1rem; }
.page-hero p  { font-size: 1.125rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

.about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.philosophy-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.0rem;
  line-height: 1.8;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.advantage-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,92,246,0.25);
}
.advantage-item h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.advantage-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Founder section */
.founder-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: start;
}
.founder-left-col {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
}
.founder-image-col {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
.founder-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% top;
  display: block;
}
.founder-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 60%,
    rgba(15,17,23,0.45) 82%,
    rgba(15,17,23,0.80) 100%);
}
.founder-image-tag {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  max-width: calc(100% - 1.2rem);
  background: rgba(15,17,23,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.85rem;
}
.founder-image-tag .name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.founder-image-tag .title {
  font-size: 0.8rem;
  color: var(--color-teal);
  margin-top: 0.1rem;
}
.founder-content-col {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-content-col h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.founder-content-col p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.founder-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.achievement-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.achievement-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.achievement-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.founder-hobbies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.founder-hobbies .hobby-tag {
  flex: 1 1 calc(50% - 0.25rem);
  justify-content: center;
  white-space: nowrap;
}
.hobby-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-purple-light);
}

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(16,185,129,0.1));
  border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-detail-body label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.contact-detail-body a,
.contact-detail-body span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s;
}
.contact-detail-body a:hover { color: var(--color-purple-light); }

.contact-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.35);
  color: var(--color-purple-light);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-control {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: #475569; }
.form-control:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ─── TOAST SYSTEM ──────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 280px;
  max-width: 360px;
  pointer-events: all;
  animation: toastIn 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
  backdrop-filter: blur(12px);
}
.toast.toast-success { border-left: 3px solid var(--color-teal); }
.toast.toast-error   { border-left: 3px solid #f87171; }
.toast.toast-info    { border-left: 3px solid var(--color-purple); }
.toast-icon { font-size: 1.25rem; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-title { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 0.125rem; }
.toast-msg   { font-size: 0.8125rem; color: var(--color-text-muted); }
.toast-close {
  background: none; border: none;
  color: var(--color-text-muted);
  font-size: 1rem; cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.toast-close:hover { color: #fff; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast.dismissing {
  animation: toastOut 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(24px); max-height: 0; padding: 0; margin: 0; }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.35s ease;
}
.footer-brand a:hover img {
  transform: scale(1.18);
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.55)) drop-shadow(0 0 20px rgba(16,185,129,0.3));
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--color-purple-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.footer-bottom a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--color-purple-light); }

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SKELETON LOADER ───────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface-2) 25%, rgba(255,255,255,0.04) 50%, var(--color-surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ─── SECTION DIVIDER ───────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

/* ─── ACCESSIBILITY ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-purple);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image-wrapper img { height: 320px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-left-col { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .founder-image-col { aspect-ratio: 4/3; }
  .about-philosophy { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 4rem 0; }
  .navbar-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 3rem 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .founder-achievements { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
