:root {
  --primary: #1a7f5a;
  --primary-light: #2cb67d;
  --primary-dark: #145c42;
  --primary-glow: rgba(26, 127, 90, 0.3);
  --accent: #e8f5f0;
  --accent-strong: #c6ece0;
  --dark: #0f1923;
  --dark-light: #1a2632;
  --text: #2d3748;
  --text-light: #718096;
  --white: #fff;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --font: 'Inter', -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--dark); }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.03em; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-badge-light { background: rgba(255,255,255,0.15); color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn i { transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(4px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-light {
  background: var(--white);
  color: var(--primary);
}
.btn-light:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Navbar */
.navbar {
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}
.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 16px !important;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link-highlight {
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: 8px;
}
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--white) 50%, var(--accent-strong) 100%);
  z-index: -2;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-5%, 5%) rotate(5deg); }
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  /*line-height: 1.1;*/
}
.title-highlight {
  position: relative;
  color: var(--primary);
  display: inline-block;
}
.hero-text {
  font-size: 18px;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-card {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  display: inline;
}
.stat-plus, .stat-percent {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image-placeholder {
  aspect-ratio: 5/6;
  max-height: 500px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-image-placeholder i { font-size: 64px; opacity: 0.6; }
.hero-image-placeholder span { font-size: 14px; }
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-decoration-1 {
  width: 80px;
  height: 80px;
  background: var(--white);
  top: 20px;
  right: -20px;
  box-shadow: var(--shadow);
  animation-delay: 0s;
}
.hero-decoration-2 {
  width: 60px;
  height: 60px;
  background: var(--accent-strong);
  bottom: 30%;
  left: -30px;
  animation-delay: 1s;
}
.hero-decoration-3 {
  width: 40px;
  height: 40px;
  background: var(--primary);
  bottom: 60px;
  right: 40px;
  animation-delay: 2s;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary) 0%, transparent 100%);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section { padding: 120px 0; }
.section-header { margin-bottom: 60px; }
.section-dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, var(--primary-glow) 0%, transparent 60%);
}
.section-accent { background: var(--gray-100); }

/* Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.problem-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.problem-card:hover .problem-number { color: var(--primary); }
.problem-content h4 { font-size: 18px; margin-bottom: 8px; }
.problem-content p { color: var(--text-light); margin: 0; font-size: 15px; }
.problem-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}
.problem-card:hover .problem-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.problem-card-cta-full {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin-top: 8px;
}
.problem-card-cta-full .problem-cta-content h4 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
}
.problem-card-cta-full .problem-cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 24px;
}
.problem-card-cta-full .btn {
  background: var(--white);
  color: var(--primary);
}
.problem-card-cta-full .btn:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* Method */
.method-visual { position: relative; }
.method-image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}
.method-image-placeholder i { font-size: 64px; opacity: 0.6; }
.method-float {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.method-float-1 { top: 20px; right: -20px; }
.method-float-2 { bottom: 40px; left: -20px; animation-delay: 1s; }
.method-features { display: flex; flex-direction: column; gap: 24px; }
.method-feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.method-feature:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(8px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
}
.feature-content h5 { color: var(--white); font-size: 17px; margin-bottom: 4px; }
.feature-content p { color: rgba(255,255,255,0.6); margin: 0; font-size: 14px; }

/* Services */
.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
}
.service-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 30px;
}
.service-header { margin-bottom: 24px; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}
.service-card-featured .service-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.service-card h4 { font-size: 22px; margin-bottom: 8px; }
.service-card-featured h4 { color: var(--white); }
.service-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}
.service-price span { font-size: 16px; font-weight: 500; opacity: 0.7; }
.service-card-featured .service-price { color: var(--white); }
.service-body { flex: 1; }
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}
.service-card-featured .service-list li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.service-list li:last-child { border: none; }
.service-list i {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
}
.service-card-featured .service-list i { background: rgba(255,255,255,0.2); color: var(--white); }
.service-note { font-size: 14px; color: var(--text-light); }
.service-tiers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.service-footer { margin-top: auto; }

/* Results */
.results-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.highlight-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.results-slider { position: relative; overflow: hidden; }
.results-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.result-card {
  flex: 0 0 100%;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.result-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.result-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
}
.result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.result-content { padding: 32px; }
.result-content blockquote {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.result-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
}
.result-author span { font-weight: 600; color: var(--primary); }
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  background: var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* About */
.about-visual { position: relative; }
.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}
.about-image-placeholder i { font-size: 64px; opacity: 0.6; }
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.about-badge i { color: var(--primary); font-size: 20px; }
.about-badge span { font-weight: 600; font-size: 14px; }
.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 16px;
  transition: var(--transition);
}
.credential:hover { background: var(--accent); }
.credential-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.credential-text strong { display: block; font-size: 15px; }
.credential-text span { font-size: 13px; color: var(--text-light); }

/* CTA */
.section-cta { padding: 60px 0; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-card h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; }
.cta-decoration {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: float 10s ease-in-out infinite;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 24px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
}
.contact-card i { font-size: 36px; transition: var(--transition); color: var(--primary); }
.contact-card span { font-weight: 600; font-size: 16px; color: var(--dark); }
.contact-card small { color: var(--text-light); font-size: 13px; }
.contact-card:hover { transform: translateY(-8px); border-color: transparent; }
.contact-card-tg:hover { background: #0088cc; box-shadow: 0 20px 40px rgba(0,136,204,0.3); }
.contact-card-tg:hover i, .contact-card-tg:hover span { color: var(--white); }
.contact-card-tg:hover small { color: rgba(255,255,255,0.8); }
.contact-card-wa:hover { background: #25d366; box-shadow: 0 20px 40px rgba(37,211,102,0.3); }
.contact-card-wa:hover i, .contact-card-wa:hover span { color: var(--white); }
.contact-card-wa:hover small { color: rgba(255,255,255,0.8); }
.contact-card-ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 20px 40px rgba(225,48,108,0.3); }
.contact-card-ig:hover i, .contact-card-ig:hover span { color: var(--white); }
.contact-card-ig:hover small { color: rgba(255,255,255,0.8); }

/* Footer */
.footer {
  background: var(--dark);
  padding: 40px 0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .brand-dot { background: var(--primary-light); }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 14px; }

/* Responsive */
@media (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-decoration {
    display: none;
  }
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-visual { margin-top: 40px; }
  .navbar-collapse {
    background: var(--white);
    padding: 24px;
    margin-top: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
  }
  .navbar-nav {
    margin-bottom: 20px;
  }
  .method-visual { margin-bottom: 40px; }
  .about-credentials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 300px; }
  .scroll-indicator { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-number { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-card { padding: 48px 24px; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .problem-card-cta-full { padding: 32px 24px; }
  .problem-card-cta-full .problem-cta-content h4 { font-size: 22px; }
}


/* custom */
@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
  }

  .hero-visual {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-wrapper {
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
  }

  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    aspect-ratio: unset; /* Убираем фиксированное соотношение */
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero .container {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hero .row {
    flex: 1;
    align-items: stretch !important; /* Заставляем колонки растягиваться */
  }

  .hero-content {
    width: 100%;
  }
}