:root {
  --bg: #fffdf0;
  --surface: #ffffff;
  --accent: #ff6b6b;
  --text: #000000;
  --muted: #555555;
  --border: #000000;
  --highlight: #fffb00;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: clamp(16px, 2.5vw, 20px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--bg);
  border-bottom: 3px solid var(--border);
  height: var(--header-height);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  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: 8px;
}

.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 12px;
  border: 2px solid transparent;
  transition: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  border: 2px solid var(--border);
  background: var(--highlight);
  color: var(--text);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid var(--border);
  padding: 6px 12px;
  background: var(--surface);
}

.header-phone:hover {
  background: var(--highlight);
  color: var(--text);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

.burger-btn {
  display: none;
  background: none;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  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;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 2px solid var(--border);
  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;
  width: 100%;
  padding: 0 32px;
}

.mobile-nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}

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

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border: 3px solid var(--border);
  padding: 12px 24px;
  margin-top: 16px;
}

.hero-section {
  padding: 80px 0 60px;
  border-bottom: 3px solid var(--border);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-headline {
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}

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

.hero-image {
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--border);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border: 3px solid var(--border);
  cursor: pointer;
  transition: none;
  text-decoration: none;
  min-height: 48px;
  min-width: 100px;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--border);
  color: var(--surface);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--border);
  background: var(--highlight);
  color: var(--text);
}

.btn-lg {
  font-size: 16px;
  padding: 18px 36px;
}

.btn-sm {
  font-size: 12px;
  padding: 10px 18px;
  min-height: 40px;
}

.btn-cookie {
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  padding: 12px 20px;
}

.btn-cookie:hover {
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
  background: var(--highlight);
}

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

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.audience-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

.audience-card {
  border: 3px solid var(--border);
  padding: 28px;
  background: var(--surface);
}

.audience-card.audience-yes {
  box-shadow: 4px 4px 0 var(--accent);
}

.audience-card.audience-no {
  box-shadow: 4px 4px 0 var(--muted);
  opacity: 0.7;
}

.audience-icon {
  margin-bottom: 12px;
}

.audience-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--muted);
  font-size: 15px;
}

.benefits-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

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

.benefit-card {
  border: 3px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.benefit-card .benefit-icon {
  padding: 20px 20px 0;
}

.benefit-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid var(--border);
}

.benefit-card h3 {
  padding: 16px 20px 8px;
  font-size: 18px;
}

.benefit-card p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--border);
}

.cta-banner-section {
  padding: 60px 0;
  border-bottom: 3px solid var(--border);
}

.cta-banner {
  border: 3px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  color: var(--surface);
}

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

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 17px;
}

.mentor-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

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

.mentor-image {
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--highlight);
  overflow: hidden;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-quote {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.mentor-text p {
  margin-bottom: 16px;
  color: var(--muted);
}

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

.mentor-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Space Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.process-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

.process-step {
  border: 3px solid var(--border);
  background: var(--surface);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.step-number {
  font-family: 'Space Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  padding: 16px 20px 0;
  line-height: 1;
}

.step-connector {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 8px 20px;
}

.process-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

.process-step h3 {
  padding: 16px 20px 8px;
  font-size: 16px;
}

.process-step p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.services-preview-section,
.services-filter-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

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

.service-card {
  border: 3px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--border);
}

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

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 2px solid var(--text);
  padding-bottom: 2px;
}

.card-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--border);
}

.reviews-preview-section,
.reviews-full-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

.review-card {
  border: 3px solid var(--border);
  padding: 28px;
  background: var(--surface);
}

.review-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

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

.review-text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

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

.mini-faq-section,
.faq-full-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

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

.faq-item {
  border: 3px solid var(--border);
  margin-bottom: -3px;
  background: var(--bg);
}

.faq-question {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

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

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px;
  transition: none;
}

details[open] .faq-question::after {
  content: '-';
}

details[open] .faq-question {
  background: var(--highlight);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
}

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

.final-cta-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

.final-cta-box {
  text-align: center;
  border: 3px solid var(--border);
  padding: 60px 40px;
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--accent);
}

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

.final-cta-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  font-style: italic;
}

.page-hero {
  padding: 60px 0 40px;
  border-bottom: 3px solid var(--border);
  background: var(--highlight);
}

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

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 3px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
  min-height: 44px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--highlight);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

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

.collection-card {
  border: 3px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.collection-card.hidden {
  display: none;
}

.collection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--border);
}

.collection-card-content {
  padding: 20px;
}

.card-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--highlight);
  border: 2px solid var(--border);
  padding: 4px 10px;
  margin-bottom: 8px;
}

.collection-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.collection-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.collection-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--border);
}

.how-it-works-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--bg);
}

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

.how-step {
  text-align: center;
  border: 3px solid var(--border);
  padding: 32px 20px;
  background: var(--surface);
}

.how-step-number {
  font-family: 'Space Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

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

.how-step p {
  color: var(--muted);
  font-size: 14px;
}

.about-story-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

.about-story-images img {
  border: 3px solid var(--border);
  margin-bottom: 20px;
}

.about-story-images img:first-child {
  box-shadow: 6px 6px 0 var(--accent);
}

.about-story-text h2 {
  margin-bottom: 20px;
}

.about-story-text p {
  margin-bottom: 16px;
  color: var(--muted);
}

.about-story-text img {
  border: 3px solid var(--border);
  margin-top: 16px;
  box-shadow: 4px 4px 0 var(--highlight);
}

.mission-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
  background: var(--surface);
}

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

.value-card {
  border: 3px solid var(--border);
  padding: 28px;
  background: var(--bg);
}

.value-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

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

.value-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

.why-us-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

.why-card {
  border: 3px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--border);
}

.why-card h3 {
  padding: 16px 20px 8px;
  font-size: 17px;
}

.why-card p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.partner-logo {
  width: 100px;
  height: 70px;
  transition: opacity 0.2s;
  cursor: default;
}

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

.partner-logo text {
  font-family: 'IBM Plex Sans', sans-serif;
}

.contact-section {
  padding: 80px 0;
  border-bottom: 3px solid var(--border);
}

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

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

.contact-form-wrapper > p {
  color: var(--muted);
  margin-bottom: 32px;
}

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

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 3px solid var(--border);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: none;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 4px 4px 0 var(--highlight);
  transform: translate(-2px, -2px);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}

.form-error {
  color: var(--accent);
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-checkbox {
  flex-direction: row;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-checkbox .form-error {
  margin-left: 30px;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  border: 3px solid var(--border);
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--highlight);
}

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

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

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

.contact-info-card {
  border: 3px solid var(--border);
  padding: 28px;
  background: var(--surface);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

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

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

.contact-info-item p {
  font-size: 14px;
  color: var(--muted);
}

.contact-sidebar-img {
  border: 3px solid var(--border);
  width: 100%;
}

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

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

.legal-container h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  text-align: left;
}

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

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

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

.legal-container li {
  margin-bottom: 8px;
  color: var(--muted);
}

.legal-container a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 2px solid var(--border);
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}

.cookie-table th {
  background: var(--highlight);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.cookie-table td {
  color: var(--muted);
}

.site-footer {
  background: var(--text);
  color: var(--surface);
  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.15);
}

.footer-brand .brand-logo {
  color: var(--surface);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

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

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

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

.site-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--surface);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.site-footer li a:hover {
  color: var(--surface);
}

.footer-cookie p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-cookie .btn {
  border-color: rgba(255,255,255,0.3);
  color: var(--surface);
  background: transparent;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

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

.back-to-top:hover {
  background: var(--highlight);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--surface);
  border-top: 3px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text strong {
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

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

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

.cookie-modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
  padding-right: 40px;
}

.cookie-modal > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
}

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

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

.cookie-option {
  border: 2px solid var(--border);
  padding: 16px;
  margin-bottom: 12px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 4px;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option p {
  font-size: 13px;
  color: var(--muted);
  margin-left: 28px;
}

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

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

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--surface);
  border: 3px solid var(--border);
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 var(--border);
}

.quick-view-modal img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 3px solid var(--border);
}

.quick-view-modal h3 {
  padding: 20px 24px 8px;
  font-size: 22px;
}

.quick-view-modal > p {
  padding: 0 24px;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.quick-view-modal .btn {
  margin: 0 24px 24px;
}

.quick-view-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  cursor: pointer;
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

.quick-view-close:hover {
  background: var(--highlight);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .benefits-grid,
  .services-grid,
  .values-grid,
  .why-us-grid,
  .services-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .burger-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
  }

  .trust-badge {
    font-size: 11px;
  }

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

  .benefits-grid,
  .services-grid,
  .values-grid,
  .why-us-grid,
  .reviews-grid,
  .reviews-full-grid,
  .services-collection-grid {
    grid-template-columns: 1fr;
  }

  .process-steps,
  .how-steps {
    grid-template-columns: 1fr;
  }

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

  .mentor-stats {
    gap: 20px;
  }

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

  section {
    padding: 48px 0 !important;
  }

  .container {
    padding: 0 16px;
  }

  .final-cta-box {
    padding: 40px 20px;
  }

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

  .contact-form .btn {
    width: 100%;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
    padding: 24px 16px;
    margin: 16px;
  }

  .quick-view-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
  }

  .filter-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-btn {
    flex-shrink: 0;
    min-height: 48px;
  }

  .partners-row {
    gap: 20px;
  }

  .partner-logo {
    width: 80px;
    height: 56px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 360px) {
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  h3 { font-size: 17px; }

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

  .btn-lg {
    font-size: 14px;
    padding: 14px 24px;
  }

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

  .mentor-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-number {
    font-size: 28px;
  }
}