:root {
  --brand-primary: #ff3e3e;
  --brand-secondary: #0a0a0a;
  --brand-accent: #161616;
  --text-primary: #0f172a;
  --text-muted: rgba(15, 23, 42, 0.6);
  --border-light: rgba(0, 0, 0, 0.08);
  --bg-light: #f8fafc;
  --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 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --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: #ffffff;
}

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: #ff2a2a;
}

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

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

.site-section--alt {
  background-color: #fafafa;
}

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

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

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

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

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

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

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

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(255, 62, 62, 0.3);
}

.btn--primary:hover {
  background-color: #ff2a2a;
  box-shadow: 0 12px 24px rgba(255, 62, 62, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 62, 62, 0.1);
}

.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: 12px;
  background-color: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.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: 999px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

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

.badge--muted {
  background-color: #e2e8f0;
  color: #64748b;
}

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

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 62, 62, 0.1);
  color: var(--brand-primary);
  font-weight: 700;
}

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

.feature-text p {
  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: 20px 0;
}

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

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

.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 {
  z-index: 2;
}

.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.18rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.75;
}

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

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

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  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: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  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-md);
  transform: translateY(-4px);
}

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

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

.testimonial-author::after {
  content: '';
  display: block;
  font-weight: 500;
  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;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid rgba(255, 62, 62, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(255, 62, 62, 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;
  transition: all var(--transition-base);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
}

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

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

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

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

.faq-item.open .faq-answer {
  display: block;
  animation: slideDown var(--transition-base) ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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(--text-primary);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #d1d5db;
  font: inherit;
  width: 100%;
  color