:root {
  --bg: #f5f0e8;
  --surface: #ede4d4;
  --accent: #2d5016;
  --text: #1a1a1a;
  --muted: #6b5e4c;
  --border: #c9bda8;
  --wood: #8b4513;
  --white: #ffffff;
  --error: #b33a3a;
  --success: #2d5016;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--wood);
}

h1, h2, h3, h4 {
  font-family: 'Bitter', serif;
  color: var(--text);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #1e3a0e;
  border-color: #1e3a0e;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
}

.btn-cookie {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
  font-size: 0.95rem;
  padding: 12px 24px;
  min-height: 48px;
  min-width: 100px;
}

.btn-cookie:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hero-section {
  padding: 80px 0 60px;
  background: var(--bg);
}

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

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.trust-row-section {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.trust-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.audience-section {
  padding: 80px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-family: 'Bitter', serif;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.audience-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.audience-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.learn-section {
  padding: 80px 0;
  background: var(--surface);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.learn-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.learn-icon {
  padding: 20px 24px 0;
  color: var(--accent);
}

.learn-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.learn-card h3 {
  padding: 16px 24px 8px;
}

.learn-card p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.mentor-section {
  padding: 80px 0;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.mentor-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.mentor-quote {
  font-family: 'Bitter', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.6;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.mentor-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.mentor-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}

.mentor-stat {
  text-align: center;
}

.mentor-stat strong {
  display: block;
  font-size: 2rem;
  font-family: 'Bitter', serif;
  color: var(--accent);
}

.mentor-stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.process-section {
  padding: 80px 0;
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bitter', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-step:last-child .step-connector {
  display: none;
}

.process-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 8px;
}

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

.cta-banner-section {
  padding: 60px 0;
}

.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  background: rgba(45, 80, 22, 0.88);
  padding: 48px;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 32px;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1.7;
}

.services-preview-section,
.services-filter-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  margin-bottom: 8px;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-tag {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.reviews-preview-section,
.reviews-full-section {
  padding: 80px 0;
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card,
.review-card-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.85rem;
  color: var(--muted);
}

.mini-faq-section,
.faq-full-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-family: 'Bitter', serif;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  background: var(--surface);
}

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

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

.partners-section {
  padding: 60px 0;
  background: var(--surface);
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 110px;
  height: auto;
  color: var(--text);
  transition: opacity var(--transition);
}

.partner-logo:hover {
  opacity: 1 !important;
}

.partner-logo text {
  transition: opacity var(--transition);
}

.final-cta-section {
  padding: 80px 0;
}

.final-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-sm {
  padding: 48px 0 32px;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-full {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-full.hidden {
  display: none;
}

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

.service-card-full img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.service-card-full-body {
  padding: 20px;
}

.service-card-full-body h3 {
  margin: 8px 0;
}

.service-card-full-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-detail-btn {
  margin-top: 12px;
}

.how-it-works-section {
  padding: 80px 0;
  background: var(--surface);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.how-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.how-step h3 {
  margin-bottom: 8px;
}

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

.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.quickview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: calc(100% - 32px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.quickview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow);
  color: var(--text);
}

.quickview-content img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.quickview-info {
  padding: 28px;
}

.quickview-info h3 {
  margin-bottom: 8px;
}

.quickview-info p {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.about-story-section {
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.about-story-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

.about-story-content .lead-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-story-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-inline-image {
  margin-top: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-mission-section {
  padding: 80px 0;
  background: var(--surface);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.mission-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.mission-card h3 {
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-advantages-section {
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.advantage-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.advantage-item h3 {
  padding: 16px 20px 8px;
}

.advantage-item p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-credentials-section {
  padding: 60px 0;
  background: var(--surface);
}

.credentials-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.credential-badge {
  text-align: center;
  color: var(--text);
}

.about-team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
}

.team-card h3 {
  padding: 16px 16px 4px;
  font-size: 1.1rem;
}

.team-card p {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.85rem;
  color: var(--error);
  min-height: 1.2em;
}

.form-consent {
  gap: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--accent);
}

.success-icon {
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content-section {
  padding: 60px 0 80px;
}

.legal-container {
  max-width: 800px;
}

.legal-container h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-container h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.legal-container p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-container ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-container li {
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-container a {
  text-decoration: underline;
}

.site-footer {
  background: #2a2318;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  color: rgba(255,255,255,0.85);
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-nav a,
.footer-legal a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact svg {
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
  color: var(--white);
}

.cookie-settings-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 0;
  font-family: 'Nunito', sans-serif;
  text-align: left;
  transition: color var(--transition);
}

.cookie-settings-link:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e3a0e;
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #2a2318;
  color: rgba(255,255,255,0.9);
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--text);
  border-radius: 50%;
  transition: background var(--transition);
}

.cookie-modal-close:hover {
  background: var(--surface);
}

.cookie-modal h3 {
  margin-bottom: 12px;
  padding-right: 40px;
}

.cookie-modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-option {
  margin-bottom: 16px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.cookie-modal .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }

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

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

  .step-connector {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  .desktop-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 8px;
  }

  .burger-btn {
    display: flex;
  }

  .hero-section {
    padding: 48px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
  }

  .trust-badge {
    font-size: 0.85rem;
  }

  .audience-grid,
  .learn-grid,
  .reviews-grid,
  .reviews-full-grid,
  .services-grid,
  .services-full-grid,
  .mission-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .audience-image-row {
    grid-template-columns: 1fr;
  }

  .mentor-grid,
  .about-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-image img {
    position: static;
  }

  .process-steps,
  .how-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .step-connector {
    display: none;
  }

  .mentor-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner-content {
    margin: 16px;
    padding: 32px 24px;
  }

  .final-cta {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-buttons .btn-cookie {
    width: 100%;
  }

  .partners-row {
    gap: 24px;
  }

  .partner-logo {
    width: 90px;
  }

  .credentials-row {
    gap: 24px;
  }

  section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }

  .container {
    padding: 0 16px;
  }

  .header-inner {
    height: 60px;
  }

  .logo-svg {
    height: 28px;
  }

  .hero-section {
    padding: 32px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}