:root {
  --brand-primary: #1f1b52;
  --brand-secondary: #312b81;
  --brand-accent: #433ca9;
  --color-white: #ffffff;
  --color-text: #0f172a;
  --color-muted: rgba(15, 23, 42, 0.6);
  --color-border: #e2e8f0;
  --color-bg-light: #f8fafc;
  --color-bg-alt: #f1f0f8;
  --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.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms 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.5;
  color: var(--color-text);
  background-color: var(--color-white);
}

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

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

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

.site-section--dark {
  background-color: var(--brand-primary);
  color: var(--color-white);
}

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

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

p {
  margin: 0;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  line-height: 1.6;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background-color: var(--brand-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(31, 27, 82, 0.25);
}

.btn--primary:hover:not(:disabled) {
  background-color: var(--brand-secondary);
  box-shadow: 0 6px 20px rgba(31, 27, 82, 0.35);
  transform: translateY(-2px);
}

.btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

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

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

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

.btn--ghost:hover:not(:disabled) {
  background-color: rgba(31, 27, 82, 0.08);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.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: var(--radius-md);
  background-color: var(--brand-accent);
  color: var(--color-white);
  font-size: 1.2rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 0;
}

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

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

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

.badge--muted {
  background-color: #e2e8f0;
  color: var(--color-text);
}

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

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

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(31, 27, 82, 0.1);
  color: var(--brand-primary);
  font-size: 1.1rem;
}

.feature-text h3 {
  font-size: 1rem;
  margin: 0 0 4px 0;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

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

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

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

.stat-label {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.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 {
}

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

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

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

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

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

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--brand-accent);
  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(--color-text);
}

.testimonial-author {
  font-weight: 700;
  margin: 0;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  margin-top: 2px;
}

.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(31, 27, 82, 0.15);
  display: block;
}

.team-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0;
}

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

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.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;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

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

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-primary);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--color-muted);
  display: none;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.form-block {
  max-width: 600px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font: inherit;
  width: 100%;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0