:root {
  --brand-primary: #333366;
  --brand-secondary: #ffffff;
  --brand-accent: #333333;
  --text-primary: #1f2937;
  --text-muted: rgba(15, 23, 42, 0.6);
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Sora', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--brand-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--brand-accent);
}

.site-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-section {
  padding: 80px 0;
  position: relative;
}

.site-section--alt {
  background-color: var(--bg-lighter);
}

.site-section--dark {
  background-color: var(--brand-accent);
  color: var(--brand-secondary);
}

.site-section--dark h1,
.site-section--dark h2,
.site-section--dark h3,
.site-section--dark h4 {
  color: var(--brand-secondary);
}

.site-section--dark .text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.site-section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

h1 {
  font-size: clamp(1.875rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  user-select: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 10px 20px rgba(51, 51, 102, 0.15);
}

.btn--primary:hover {
  background-color: #252547;
  box-shadow: 0 15px 30px rgba(51, 51, 102, 0.25);
}

.btn--outline {
  background-color: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn--outline:hover {
  background-color: var(--brand-primary);
  color: var(--brand-secondary);
}

.btn--ghost {
  background-color: transparent;
  color: var(--brand-primary);
  border: none;
}

.btn--ghost:hover {
  background-color: rgba(51, 51, 102, 0.1);
}

.card {
  background-color: var(--brand-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(51, 51, 102, 0.2);
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand-accent);
  color: var(--brand-secondary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--primary {
  background-color: var(--brand-primary);
  color: var(--brand-secondary);
}

.badge--accent {
  background-color: var(--brand-accent);
  color: var(--brand-secondary);
}

.badge--muted {
  background-color: var(--bg-lighter);
  color: var(--text-muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(51, 51, 102, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: 2px;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

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

.testimonial-card {
  background-color: var(--brand-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-primary);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.testimonial-quote {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.team-card {
  padding: 20px;
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid rgba(51, 51, 102, 0.2);
  transition: transform var(--transition-base);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.team-name {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.team-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: var(--brand-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(51, 51, 102, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  transition: transform var(--transition-