:root {
  --brand-primary: #f7ab31;
  --brand-secondary: #83502e;
  --brand-accent: #1a1937;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-muted: rgba(15, 23, 42, 0.6);
  --color-muted-light: rgba(15, 23, 42, 0.4);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --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: 'poznamka', 'Sora', 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  line-height: 1.7;
}

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

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

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

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

.site-section--alt {
  background-color: rgba(131, 80, 46, 0.06);
}

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

.site-section--dark .section-title,
.site-section--dark .text-muted {
  color: inherit;
}

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

.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(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

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

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

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

.btn--primary {
  background-color: var(--brand-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(247, 171, 49, 0.3);
}

.btn--primary:hover:not(:disabled) {
  background-color: #f5a01f;
  box-shadow: 0 8px 20px rgba(247, 171, 49, 0.4);
  transform: translateY(-2px);
}

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

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

.btn--outline:hover:not(:disabled) {
  background-color: rgba(247, 171, 49, 0.05);
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

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

.btn--ghost:hover:not(:disabled) {
  background-color: rgba(247, 171, 49, 0.08);
}

.card {
  background-color: var(--color-white);
  border-radius: 24px;
  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(247, 171, 49, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.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(--color-gray-900);
}

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

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

.badge--primary:hover {
  background-color: #f5a01f;
}

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

.badge--muted {
  background-color: var(--color-gray-200);
  color: var(--color-gray-700);
}

.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(247, 171, 49, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-text {
  flex: 1;
}

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

.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-bottom: 8px;
  line-height: 1;
}

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

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

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

.hero-content {
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--color-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;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  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(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  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;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--color-gray-700);
  line-height: 1.8;
}

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

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-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(247, 171, 49, 0.2);
  transition: all var(--transition-base);
}

.team-card:hover .team-photo {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(247, 171, 49, 0.1);
}

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

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

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

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

.faq-item:hover {
  border-color: rgba(247, 171, 49, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-