:root {
  --bg: #f5f0e8;
  --surface: #ede4d4;
  --accent: #2d5016;
  --text: #1a1a1a;
  --muted: #6b5e4c;
  --border: #c9bda8;
  --wood: #8b4513;
  --cta: #D4812A;
  --cta-hover: #b86d1f;
  --white: #ffffff;
  --dark: #1a1a2e;
  --radius: 12px;
  --radius-lg: 16px;
  --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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

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

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

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

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

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--cta));
  z-index: 100001;
  transition: width 0.1s linear;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--dark);
  height: 60px;
  color: var(--white);
}

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

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

.header-logo svg { display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone:hover { color: var(--cta); }

.header-cta {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--white);
  align-items: center;
  justify-content: center;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  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: none;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

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

.mobile-nav-link {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-link:hover { color: var(--cta); }

.mobile-nav-phone {
  color: var(--cta);
  margin-top: 12px;
}

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

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

.hero-card-text {
  background: var(--dark);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cta);
  margin-bottom: 16px;
}

.hero-card-text h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-card-text p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-card-image {
  position: relative;
  z-index: 1;
  margin-left: -40px;
}

.hero-card-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-trust-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  padding: 12px 28px;
}

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

.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,129,42,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

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

.btn-full { width: 100%; }

.trust-section {
  background: var(--accent);
  padding: 48px 0;
}

.trust-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item { color: var(--white); }

.counter-number {
  font-family: 'Bitter', serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  display: inline;
}

.counter-plus {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.counter-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cta);
  margin-bottom: 12px;
  text-align: center;
}

.section-label-light {
  color: var(--cta);
  text-align: left;
}

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

.masonry-grid {
  columns: 3;
  column-gap: 24px;
}

.masonry-card {
  break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.masonry-card-accent {
  background: var(--surface);
  border-color: transparent;
}

.stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.masonry-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
}

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

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

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

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.partners-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.partner-logo {
  width: 120px;
  height: 50px;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

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

.target-section { background: var(--surface); }

.target-checklist {
  max-width: 600px;
  margin: 0 auto 32px;
}

.target-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 8px;
  border-radius: var(--radius);
  background: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.target-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-icon-yes {
  background: rgba(45,80,22,0.12);
  color: var(--accent);
}

.target-icon-no {
  background: rgba(180,50,50,0.1);
  color: #b43232;
}

.target-verdict {
  text-align: center;
  font-size: 17px;
  margin-bottom: 24px;
  color: var(--muted);
}

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

.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.process-section { background: var(--surface); }

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

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.process-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
}

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

.process-step {
  display: inline-block;
  font-family: 'Bitter', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

.process-note {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
}

.mentor-section {
  overflow: hidden;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.mentor-text {
  background: var(--dark);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-text h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.mentor-title {
  color: var(--cta);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.mentor-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.8;
}

.mentor-credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentor-credential {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}

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

.faq-section { background: var(--bg); }

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

.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

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

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

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

.contact-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 36px);
}

.contact-info p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
}

.contact-detail a {
  color: rgba(255,255,255,0.9);
}

.contact-detail a:hover { color: var(--cta); }

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

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: #b43232;
}

.form-error {
  display: block;
  font-size: 13px;
  color: #b43232;
  margin-top: 4px;
  min-height: 18px;
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.form-group-checkbox label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.form-group-checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

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

.form-success p {
  color: var(--muted);
  margin-top: 8px;
}

.footer {
  background: #12121e;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

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

.footer-logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col ul li a:hover { color: var(--cta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  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);
  z-index: 9998;
  box-shadow: var(--shadow);
}

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

.back-to-top:hover {
  background: var(--wood);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--dark);
  color: var(--white);
  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;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
  min-height: 44px;
  min-width: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  font-family: 'Nunito', sans-serif;
  transition: all var(--transition);
}

.btn-cookie-accept {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}

.btn-cookie-accept:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--white);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--white);
}

.btn-cookie-settings:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.cookie-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-lg);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

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

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

.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-option {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.cookie-option label input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

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

.legal-page {
  padding: 100px 0 80px;
  min-height: 60vh;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: clamp(18px, 3vw, 24px);
  margin-top: 32px;
  margin-bottom: 12px;
}

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

.legal-page p {
  margin-bottom: 12px;
  line-height: 1.8;
}

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

.legal-page ul li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-image {
    margin-left: 0;
  }

  .hero-card-image img {
    height: 350px;
  }

  .masonry-grid {
    columns: 2;
  }

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

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

  .mentor-text {
    padding: 60px 40px;
  }

  .mentor-image img {
    min-height: 400px;
  }
}

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

  .header-phone span {
    display: none;
  }

  .header-cta {
    display: flex;
  }

  .burger {
    display: flex;
  }

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

  .hero-card-text {
    padding: 32px 24px;
  }

  .hero-card-image img {
    height: 300px;
  }

  .hero-trust-strip {
    gap: 16px;
  }

  .trust-item {
    font-size: 13px;
  }

  .trust-counters {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .masonry-grid {
    columns: 1;
  }

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

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

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

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

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

  .contact-form-wrap {
    padding: 24px;
  }

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

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

  .partners-row {
    gap: 24px;
  }

  .partner-logo {
    width: 100px;
    height: 42px;
  }

  .mentor-text {
    padding: 48px 24px;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

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

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

  .cookie-buttons {
    flex-direction: column;
  }

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

  .cookie-banner {
    padding: 16px;
  }

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

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

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-card-text {
    padding: 24px 16px;
  }

  .hero-card-text h1 {
    font-size: 26px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .masonry-card {
    padding: 20px;
  }
}