:root {
  --brand-primary: #c70039;
  --brand-secondary: #00b4b1;
  --brand-accent: #059a97;
  --text-primary: #0f172a;
  --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.1);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
}

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

html,
body {
  font-family: 'Sora', 'Manrope', sans-serif;
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  color: var(--text-primary);
  margin: 0;
}

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

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

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

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

.site-section--alt {
  background-color: rgba(0, 180, 177, 0.08);
}

.site-section--dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

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

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

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 32px;
}

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

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

.btn--primary {
  background-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(199, 0, 57, 0.2);
}

.btn--primary:hover {
  background-color: #a50030;
  box-shadow: 0 6px 16px rgba(199, 0, 57, 0.3);
  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);
  padding: 8px 16px;
}

.btn--ghost:hover {
  background-color: rgba(199, 0, 57, 0.08);
}

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

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(199, 0, 57, 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: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

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

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

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

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

.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(199, 0, 57, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

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

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

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

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

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

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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 {
  display: flex;
  flex-direction: column;
}

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

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

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

.hero-image {
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

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

.testimonial-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-accent);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: all 0.3s ease;
}

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

.testimonial-quote {
  font-size: 1rem;
  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;
}

.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(199, 0, 57, 0.2);
  transition: transform 0.3s ease;
}

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

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

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

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

.faq-item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--brand-primary);
  transition: transform 0.3s ease;
  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);
  font-size: 0.95rem;
  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: 20px;
}

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

.form-input,
.form-textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font: inherit;
  width: 100%;
  color: var(--text-primary);
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(199, 0, 57, 0.15);
}

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

.form-submit {
  padding: 12px 28px;
  background-color: var(--brand-primary);
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s