:root {
  --color-primary: #0A192F;   /* Default; overwritten by brand.js */
  --color-secondary: #E7B23B; /* Default; overwritten by brand.js */
  --color-accent: #FDFDFD;    /* Default; overwritten by brand.js */

  --text: #0f172a;
  --text-light: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, #f59e0b 100%);
  --gradient-surface: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-feature-settings: 'kern' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Header */
.site-header-inner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-surface);
  opacity: 0.8;
  z-index: -1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

#brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gradient-secondary);
  color: #111;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.brand:hover #brand-mark {
  transform: rotate(10deg) scale(1.05);
  box-shadow: var(--shadow-lg);
}

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

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav a:hover {
  color: var(--text);
  background: var(--surface-alt);
  transform: translateY(-1px);
}

.nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.hamburger { 
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: var(--surface-alt);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero */
.hero {
  background: 
    linear-gradient(135deg, rgba(231, 178, 59, 0.1) 0%, transparent 40%),
    linear-gradient(225deg, rgba(10, 25, 47, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at top left, rgba(231, 178, 59, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(10, 25, 47, 0.1) 0%, transparent 50%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e7b23b' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 100px 0 120px;
  align-items: center;
}

.hero-copy {
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-copy h1 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: var(--text);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-light) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy .sub {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  font-weight: 400;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.connection-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 400px;
}

/* Beautiful floating sparks */
.sparks-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 400px;
}

.spark {
  position: absolute;
  color: var(--color-secondary);
  font-size: 18px;
  text-shadow: 0 0 15px rgba(231, 178, 59, 0.8);
  animation: sparkFloat 6s ease-in-out infinite;
  opacity: 0.9;
}

.spark::before {
  content: "✦";
}

/* Floating animation */
@keyframes sparkFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(5px) scale(0.95);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    opacity: 1;
  }
}

/* Individual spark positions and delays */
.spark-1 { 
  top: 15%; 
  left: 20%; 
  font-size: 16px;
  animation-delay: 0s; 
}

.spark-2 { 
  top: 25%; 
  right: 25%; 
  font-size: 20px;
  animation-delay: 0.8s; 
}

.spark-3 { 
  top: 45%; 
  left: 15%; 
  font-size: 14px;
  animation-delay: 1.6s; 
}

.spark-4 { 
  top: 35%; 
  right: 15%; 
  font-size: 22px;
  animation-delay: 2.4s; 
}

.spark-5 { 
  bottom: 30%; 
  left: 25%; 
  font-size: 18px;
  animation-delay: 3.2s; 
}

.spark-6 { 
  bottom: 20%; 
  right: 30%; 
  font-size: 15px;
  animation-delay: 4s; 
}

.spark-7 { 
  top: 60%; 
  left: 45%; 
  font-size: 17px;
  animation-delay: 4.8s; 
}

.spark-8 { 
  bottom: 35%; 
  right: 20%; 
  font-size: 19px;
  animation-delay: 5.6s; 
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, 
    rgba(231, 178, 59, 0.05) 0%, 
    rgba(10, 25, 47, 0.03) 40%, 
    transparent 70%
  );
  pointer-events: none;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(3deg);
  }
  50% { 
    transform: translateY(-15px) translateX(-5px) rotate(-2deg);
  }
  75% { 
    transform: translateY(-25px) translateX(15px) rotate(4deg);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes nodePulse {
  0%, 100% { 
    transform: scale(1);
    text-shadow: 0 0 10px rgba(231, 178, 59, 0.6);
  }
  50% { 
    transform: scale(1.3);
    text-shadow: 0 0 20px rgba(231, 178, 59, 0.9);
  }
}

@keyframes lineFlow {
  0% { 
    opacity: 0.6;
  }
  50% { 
    opacity: 1;
  }
  100% { 
    opacity: 0.6;
  }
}

@keyframes connectionPulse {
  0% { 
    left: 0%;
    opacity: 1;
  }
  100% { 
    left: 100%;
    opacity: 0;
  }
}

/* Sections */
.section { 
  padding: 80px 0;
  position: relative;
}

.section.alt { 
  background: var(--surface-alt);
  position: relative;
}

.section.alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a192f' fill-opacity='0.02'%3E%3Cpath d='M20 20l-1-1v-1h1v1l1 1v1h-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-title {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: var(--text);
  letter-spacing: -0.025em;
  text-align: center;
}

.section-sub { 
  color: var(--text-light); 
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 48px 0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.grid.two { 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.card:hover::before {
  transform: translateX(0);
}

.stat { 
  text-align: center; 
  background: var(--gradient-surface);
}

.stat-num {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 32px; 
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.stat-label { 
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-small { 
  padding: 10px 18px; 
  font-size: 14px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: #111;
  border-color: var(--color-secondary);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.05);
}

.btn-gold {
  background: var(--gradient-secondary);
  color: #111;
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline { 
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--surface-alt);
  border-color: var(--color-secondary);
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

.list { padding-left: 18px; }
.list li + li { margin-top: 6px; }

.note {
  border-left: 4px solid var(--color-secondary);
  padding: 12px 14px;
  background: #fffdf5;
  border-radius: 10px;
}

.contact-cta { 
  background: 
    linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.9) 100%),
    linear-gradient(45deg, rgba(231, 178, 59, 0.1) 0%, transparent 50%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e7b23b' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-cta-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 32px;
  position: relative;
  z-index: 1;
}

.contact-cta h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 16px;
}

/* Footer */
.site-footer-inner {
  border-top: 1px solid var(--border-light);
  background: var(--surface);
  padding: 60px 0 40px;
  position: relative;
}

.site-footer-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-surface);
  opacity: 0.5;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand #footer-brand-name {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 24px; 
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-brand p {
  margin-bottom: 8px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-primary);
}

.muted { 
  color: var(--muted); 
  font-size: 14px; 
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-alt);
  border-radius: 8px;
  text-decoration: none; 
  color: var(--text);
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--color-secondary);
  color: #111;
  transform: translateY(-2px);
}

/* Forms */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form label { 
  display: block; 
  font-weight: 600; 
  margin: 0 0 8px 0;
  color: var(--text);
}

.form input, 
.form textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: var(--surface);
}

.form input:focus, 
.form textarea:focus { 
  border-color: var(--color-secondary); 
  box-shadow: 0 0 0 4px rgba(231, 178, 59, 0.15);
  background: white;
}

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

.form .form-group {
  margin-bottom: 24px;
}

.form select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: all 0.3s ease;
  background: var(--surface);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.form select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(231, 178, 59, 0.15);
  background: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-section h2 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text);
}

.contact-form-section .section-sub {
  text-align: left;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-item strong {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.4;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--color-secondary);
}

.contact-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-features strong {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
  font-size: 15px;
}

.contact-features p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.4;
}

.btn-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.schedule-section {
  margin-top: 24px;
}

/* Contact responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: var(--color-secondary);
  opacity: 0.1;
  font-family: 'Montserrat', serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.testimonial-content {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  color: var(--color-secondary);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.testimonial-author strong {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.3;
}

/* Client Logos */
.client-logos {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.client-logos h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 32px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  align-items: center;
}

.logo-placeholder {
  padding: 20px;
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.logo-placeholder:hover {
  background: var(--surface);
  border-color: var(--color-secondary);
  color: var(--text);
  transform: translateY(-2px);
}

/* Enhanced touch targets for better mobile usability */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav a, .hamburger {
    min-height: 48px;
    min-width: 48px;
  }
  
  .hamburger {
    padding: 12px;
  }
  
  .testimonial-card:hover,
  .card:hover,
  .talent-node:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-copy h1 {
    font-size: 42px;
  }
  .section-title {
    font-size: 32px;
  }
  
  .hamburger {
    display: inline-flex;
  }
  
  .nav {
    display: none;
  }
  
  /* Adjust network for tablets */
  .connection-pattern {
    max-width: 400px;
    max-height: 350px;
  }
  
  .node {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  
  .node-5 {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
  
  .connection-line {
    height: 2px;
    opacity: 0.9;
  }
}

@media (max-width: 900px) {
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 40px;
    padding: 80px 0 100px;
    text-align: center;
  }
  
  .hero-copy h1 {
    font-size: 36px;
  }
  
  .grid { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .footer-grid { 
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-inner {
    padding: 60px 0 80px;
  }
  
  .hero-copy h1 {
    font-size: 32px;
  }
  
  .hero-copy .sub {
    font-size: 16px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-sub {
    font-size: 16px;
  }
  
  .grid { 
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .card {
    padding: 20px;
  }
  
  .nav { 
    display: none; 
  }
  
  .hamburger { 
    display: inline-flex;
  }
  
  /* Mobile network adjustments */
  .hero-visual {
    min-height: 300px;
  }
  
  .connection-pattern {
    max-width: 320px;
    max-height: 280px;
  }
  
  .node {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
  
  .node-5 {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
  
  .connection-line {
    height: 2px;
    opacity: 1;
    box-shadow: 0 0 6px rgba(231, 178, 59, 0.8);
  }
  
  /* Adjust mobile line positions */
  .line-1 {
    width: 30%;
    transform: rotate(15deg);
  }
  
  .line-2 {
    width: 25%;
    transform: rotate(-30deg);
  }
  
  .line-3 {
    width: 22%;
    transform: rotate(-15deg);
  }
  
  .line-4 {
    width: 25%;
    transform: rotate(20deg);
  }
  
  .line-5 {
    width: 28%;
    transform: rotate(-3deg);
  }
  
  .line-6 {
    width: 26%;
    transform: rotate(-8deg);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute; 
    right: 16px; 
    top: 72px; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 20px; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    gap: 8px;
    z-index: 1000;
    animation: menuSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav.open a {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav.open a:hover {
    background: var(--color-secondary);
    color: #111;
    transform: translateY(-1px);
  }
  
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    justify-content: center;
  }
}

/* Value Cards */
.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

/* Achievement Grid */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.achievement {
  text-align: center;
  padding: 16px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.achievement-number {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.achievement-label {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: bold;
  margin-right: 8px;
}

/* Team Cards */
.team-card {
  text-align: center;
  transition: all 0.3s ease;
}

.team-avatar {
  margin-bottom: 20px;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.team-card h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--text);
}

.team-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.team-card p:last-child {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Narrow container for content pages */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

/* Intersection Observer animations */
.animate-target {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for cards */
.card.animate-target {
  transition-delay: 0.1s;
}

.card.animate-target:nth-child(2) {
  transition-delay: 0.2s;
}

.card.animate-target:nth-child(3) {
  transition-delay: 0.3s;
}

.card.animate-target:nth-child(4) {
  transition-delay: 0.4s;
}

.testimonial-card.animate-target {
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.animate-target.animate-in {
  transform: translateY(0) scale(1);
}

/* Hero animations */
.hero-copy.animate-target {
  transform: translateX(-30px);
}

.hero-art.animate-target {
  transform: translateX(30px);
}

.hero-copy.animate-target.animate-in,
.hero-art.animate-target.animate-in {
  transform: translateX(0);
}

/* Section title animations */
.section-title.animate-target {
  transform: translateY(20px);
  transition-delay: 0.1s;
}

.section-sub.animate-target {
  transform: translateY(20px);
  transition-delay: 0.2s;
}

/* Achievement animations */
.achievement.animate-target {
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement.animate-target.animate-in {
  transform: translateY(0) scale(1);
}

/* Team card animations */
.team-card.animate-target {
  transform: translateY(30px) rotateY(10deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card.animate-target.animate-in {
  transform: translateY(0) rotateY(0deg);
}

/* Contact card animations */
.contact-card.animate-target {
  transform: translateX(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card.animate-target.animate-in {
  transform: translateX(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .animate-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .hero-copy,
  .hero-art,
  .spark {
    animation: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Talent Categories */
.talent-showcase {
  margin: 60px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.talent-category {
  background: var(--surface-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
  opacity: 1;
}

.talent-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.talent-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.talent-category:hover::before {
  transform: translateX(0);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  display: block;
}

.talent-category h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.talent-category p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Staff Showcase */
.staff-showcase {
  margin: 60px 0;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 48px;
}

.staff-member {
  background: var(--surface-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
  opacity: 1;
}

.staff-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.staff-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.staff-member:hover::before {
  transform: translateX(0);
}

.staff-spark {
  font-size: 48px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(231, 178, 59, 0.6);
  animation: sparkFloat 4s ease-in-out infinite;
  display: block;
}

.staff-member h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.staff-role {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.staff-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.staff-cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  margin-top: 60px;
}

.staff-cta h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.staff-cta .btn {
  color: #ffffff;
}

.staff-cta .btn:hover {
  color: #ffffff;
}

.showcase-cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.showcase-cta .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(10px);
}

.showcase-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.showcase-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e7b23b' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.showcase-cta h3 {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: white;
}

.showcase-cta p {
  font-size: 18px;
  margin: 0 0 32px 0;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes sparkPulse {
  0%, 100% { 
    opacity: 0.8; 
    transform: scale(1);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2);
  }
}

@keyframes hubFloat {
  0%, 100% { 
    transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    box-shadow: var(--shadow-xl);
  }
  50% { 
    transform: translate(-50%, -50%) translateY(-8px) rotate(1deg);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
  }
}

@keyframes hubPulse {
  0% { 
    opacity: 0.6; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.3; 
    transform: scale(1.1);
  }
  100% { 
    opacity: 0.6; 
    transform: scale(1);
  }
}

@keyframes connectionFlow {
  0% { 
    stroke-dashoffset: 100;
    opacity: 0;
  }
  50% { 
    opacity: 1;
  }
  100% { 
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
}

/* Enhanced mobile responsiveness for new grid layout */
@media (max-width: 1024px) {
  .network-grid {
    gap: 24px;
    max-width: 900px;
  }
  
  .talent-card {
    min-height: 160px;
    padding: 24px 20px;
  }
  
  .card-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .talent-card h3 {
    font-size: 16px;
  }
  
  .bareeqs-central-hub {
    width: 160px;
    height: 160px;
  }
  
  .bareeqs-central-hub .hub-icon {
    font-size: 36px;
  }
  
  .bareeqs-central-hub h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .network-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  
  .central-hub-row {
    gap: 20px;
    margin: 32px 0;
  }
  
  .connection-line {
    display: none;
  }
  
  .bareeqs-central-hub {
    width: 180px;
    height: 180px;
  }
  
  .talent-card {
    min-height: 140px;
    padding: 20px 16px;
  }
  
  .card-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .talent-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .talent-card p {
    font-size: 13px;
  }
  
  .network-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/* Testimonials mobile responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: none;
  }
  
  .testimonial-card {
    padding: 28px;
    margin: 0;
    max-width: none;
  }
  
  .testimonial-stars {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  
  .testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .testimonial-author {
    gap: 16px;
  }
  
  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .testimonial-author strong {
    font-size: 15px;
  }
  
  .testimonial-author span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 24px 20px;
  }
  
  .testimonial-stars {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  
  .testimonial-content p {
    font-size: 15px;
  }
  
  .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Responsive adjustments for new components */
@media (max-width: 640px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
  
  .value-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .team-card {
    padding: 24px 16px;
  }
  
  .avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .talent-network-container {
    margin: 24px 0;
  }
  
  .network-visualization {
    height: 300px;
    margin-bottom: 24px;
  }
  
  .talent-node {
    min-width: 80px;
    padding: 10px 12px;
  }
  
  .talent-node:nth-child(1) { top: 30px; left: 10px; }
  .talent-node:nth-child(2) { top: 20px; right: 20px; }
  .talent-node:nth-child(3) { top: 120px; left: 5px; }
  .talent-node:nth-child(4) { bottom: 60px; right: 15px; }
  .talent-node:nth-child(5) { bottom: 30px; left: 40px; }
  .talent-node:nth-child(6) { top: 70px; left: 50%; transform: translateX(-50%); }
}

/* Mobile responsive sparks */
@media (max-width: 1024px) {
  .hero-visual {
    max-width: 400px;
    max-height: 300px;
  }
  
  .spark {
    font-size: 16px;
  }
  
  .spark-2 { font-size: 18px; }
  .spark-4 { font-size: 20px; }
  .spark-6 { font-size: 13px; }
  .spark-8 { font-size: 17px; }
}

@media (max-width: 640px) {
  .hero-visual {
    max-width: 320px;
    max-height: 280px;
    margin: 0 auto;
  }
  
  .spark {
    font-size: 18px;
  }
  
  .spark-2 { font-size: 20px; }
  .spark-4 { font-size: 22px; }
  .spark-6 { font-size: 15px; }
  .spark-8 { font-size: 19px; }
  
  /* Keep desktop positioning for consistent look */
  .spark-1 { top: 15%; left: 20%; }
  .spark-2 { top: 25%; right: 25%; }
  .spark-3 { top: 45%; left: 15%; }
  .spark-4 { top: 35%; right: 15%; }
  .spark-5 { bottom: 30%; left: 25%; }
  .spark-6 { bottom: 20%; right: 30%; }
  .spark-7 { top: 60%; left: 45%; }
  .spark-8 { bottom: 35%; right: 20%; }
  
  /* Staff grid mobile adjustments */
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .staff-member {
    padding: 24px 20px;
  }
  
  .staff-spark {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .staff-member h3 {
    font-size: 18px;
  }
  
  .staff-role {
    font-size: 15px;
  }
  
  .staff-desc {
    font-size: 14px;
  }
  
  /* Staff CTA mobile adjustments */
  .staff-cta {
    padding: 32px 24px;
    margin-top: 40px;
  }
  
  .staff-cta h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .staff-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}
