/* ══════════════════════════════════════════════════════════
   Landing Premium Override — v4
   DM Sans · Deep Indigo + Bronze · Premium Psychology
   ══════════════════════════════════════════════════════════ */

/* ── Fade-up animation ────────────────────────────────── */

.landing-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .landing-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* ── Hero ─────────────────────────────────────────────── */

.landing-hero {
  --hero-content-y: 0;
  --hero-logo-size: 150px;
  --hero-stack-gap: 52px;
  background: #141428;
  min-height: 100vh;
  min-height: 100dvh;
}

.landing-hero-img {
  opacity: 0.7;
}

.landing-hero-overlay {
  background:
    radial-gradient(ellipse 70% 45% at 50% 60%, rgba(184, 135, 90, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 30% 50%, rgba(59, 74, 138, 0.10) 0%, transparent 45%),
    linear-gradient(180deg,
      rgba(20, 20, 40, 0.60) 0%,
      rgba(20, 20, 40, 0.10) 30%,
      rgba(20, 20, 40, 0.08) 55%,
      rgba(20, 20, 40, 0.50) 80%,
      rgba(20, 20, 40, 0.90) 100%
    );
}

/* ── Hero header ──────────────────────────────────────── */

.landing-hero-header {
  padding: 18px 20px;
}

.landing-hero-lang-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.25s, background 0.25s;
}

.landing-hero-lang-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.landing-hero-login-link {
  font-family: var(--landing-font-body);
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.25s, border-color 0.25s;
}

.landing-hero-login-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* ── Hero content ────────────────────────────────────── */

.landing-hero-content {
  max-width: 820px;
  gap: var(--hero-stack-gap);
}

/* ── Hero sequential reveal ───────────────────────────── */

.landing-hero-el {
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

/* ── Logo — pushed down on desktop ────────────────────── */

.landing-hero-logo-stage {
  margin-bottom: 8px;
  margin-top: 24px;
  text-align: center;
}

.landing-hero-logo {
  filter: drop-shadow(0 4px 32px rgba(59, 74, 138, 0.25));
}

.landing-hero-logo-text {
  display: block;
  margin-top: 8px;
  font-family: var(--landing-font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ── Headline ────────────────────────────────────────── */

.landing-hero-title {
  font-family: var(--landing-font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 720px;
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ── Subtitle ────────────────────────────────────────── */

.landing-hero-subtitle {
  font-family: var(--landing-font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
}

/* ── CTA primary — gradient, prominent ────────────────── */

.landing-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 20px 60px;
  font-family: var(--landing-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #3b4a8a 0%, #5b6abf 40%, #b8875a 100%);
  box-shadow:
    0 6px 32px rgba(59, 74, 138, 0.35),
    0 2px 8px rgba(184, 135, 90, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: landingCtaPulse 4.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.landing-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-cta-primary:hover {
  box-shadow:
    0 14px 48px rgba(59, 74, 138, 0.45),
    0 4px 12px rgba(184, 135, 90, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.landing-cta-primary:hover::before {
  transform: translateX(60%);
}

.landing-cta-primary:active {
  transform: scale(0.98);
}

@keyframes landingCtaPulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(59, 74, 138, 0.30), 0 2px 8px rgba(184, 135, 90, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
  50%      { box-shadow: 0 6px 40px rgba(59, 74, 138, 0.40), 0 2px 12px rgba(184, 135, 90, 0.25), 0 0 0 8px rgba(59, 74, 138, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-cta-primary { animation: none; }
}

@media (max-width: 768px) {
  .landing-cta-primary { animation: none; }
}

/* ── Trust row ───────────────────────────────────────── */

.landing-hero-trust {
  margin-top: 8px;
  gap: 16px;
}

.landing-trust-item {
  font-family: var(--landing-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: none;
}

.landing-trust-dot {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Hero responsive: tablet portrait ────────────────── */

@media (max-width: 768px) {
  .landing-hero {
    --hero-logo-size: 110px;
    --hero-stack-gap: 40px;
    --hero-content-y: 0;
  }

  .landing-hero-logo-stage {
    margin-top: 0;
  }

  .landing-hero-title {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  }

  .landing-hero-header {
    padding: 14px 16px;
  }

  .landing-trust-item {
    font-size: 0.7rem;
  }
}

/* ── Hero responsive: mobile portrait ────────────────── */

@media (max-width: 480px) {
  .landing-hero {
    --hero-logo-size: 90px;
    --hero-stack-gap: 36px;
    --hero-content-y: 0;
  }

  .landing-hero-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .landing-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .landing-cta-primary {
    margin-top: 6px;
    padding: 17px 46px;
    font-size: 1.05rem;
  }

  .landing-hero-trust {
    margin-top: 6px;
    gap: 10px;
  }
}

/* ── Hero responsive: mobile landscape ───────────────── */

@media (max-height: 520px) and (orientation: landscape) {
  .landing-hero {
    --hero-logo-size: 64px;
    --hero-stack-gap: 20px;
    --hero-content-y: 0;
  }

  .landing-hero-logo-stage {
    margin-top: 0;
  }
}

/* ── Sections shared ──────────────────────────────────── */

.landing-section {
  padding: clamp(72px, 10vw, 128px) clamp(24px, 6vw, 64px);
}

.landing-section-inner {
  max-width: 900px;
}

.landing-section--alt {
  background-image: linear-gradient(180deg, var(--landing-cream-warm) 0%, color-mix(in srgb, var(--landing-cream-warm) 92%, #ede5d8) 50%, var(--landing-cream-warm) 100%);
}

.landing-section-title {
  font-family: var(--landing-font-display);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.landing-requests-section .landing-section-title {
  margin-bottom: 20px;
}

.landing-section-text {
  font-family: var(--landing-font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 620px;
}

/* ══════════════════════════════════════════════════════════
   Request tags — colored text + border + icon
   ══════════════════════════════════════════════════════════ */

.landing-tags-field {
  padding: 44px 20px;
  max-width: 720px;
  margin-bottom: 20px;
}

.landing-glow--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--landing-primary-soft) 0%, transparent 70%);
}

.landing-glow--2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--landing-accent-glow, rgba(184, 135, 90, 0.22)) 0%, transparent 70%);
}

.landing-tag {
  font-family: var(--landing-font-body);
  padding: 13px 26px;
  transition: border-color 0.3s;
  cursor: default;
}

.landing-tag:hover {
  transform: none;
  box-shadow: none;
}

/* Tag icon colors — using inline --tag-color variable */
.landing-tag-icon img {
  color: var(--tag-color, #6b7280);
}
.landing-tag-icon {
  color: var(--tag-color, #6b7280);
}

/* Tag stagger animation */
.landing-tags-field .landing-tag {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.landing-tags-field .landing-tag.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Comparison ───────────────────────────────────────── */

.landing-comparison-col {
  border-radius: 28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
}

.landing-comparison-col:hover {
  transform: translateY(-4px);
}

.landing-comparison-heading {
  font-family: var(--landing-font-display);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   Psychological map — no visual, styled list
   ══════════════════════════════════════════════════════════ */

/* Hide the old stacked-pages visual */
.landing-map-visual {
  display: none;
}

.landing-map-subtitle {
  font-family: var(--landing-font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--landing-text);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.landing-map-list {
  margin-top: 0;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-map-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--landing-font-body);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--landing-glass-bg);
  border: 1.5px solid transparent;
  box-shadow: var(--landing-shadow-soft);
  transition: none;
  cursor: default;
}

.landing-map-list-item:hover {
  transform: none;
  box-shadow: var(--landing-shadow-soft);
}

/* Map item unique colors — icon filter + border + text */
/* 1=анализ (scan-search) — глубокий индиго */
.landing-map-list-item--1 { color: var(--landing-text); border-color: rgba(58, 80, 148, 0.30); }
.landing-map-list-item--1 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(30%) saturate(420%) hue-rotate(215deg) brightness(86%) contrast(90%);
}
/* 2=эмоции (heart-pulse) — тёплый розово-коралловый */
.landing-map-list-item--2 { color: var(--landing-text); border-color: rgba(168, 80, 100, 0.30); }
.landing-map-list-item--2 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(32%) saturate(460%) hue-rotate(325deg) brightness(86%) contrast(88%);
}
/* 3=паттерны (brain-circuit) — бирюзовый */
.landing-map-list-item--3 { color: var(--landing-text); border-color: rgba(58, 138, 138, 0.30); }
.landing-map-list-item--3 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(28%) saturate(400%) hue-rotate(130deg) brightness(86%) contrast(88%);
}
/* 4=инсайты (lightbulb) — янтарно-золотой */
.landing-map-list-item--4 { color: var(--landing-text); border-color: rgba(168, 138, 50, 0.30); }
.landing-map-list-item--4 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(38%) saturate(440%) hue-rotate(355deg) brightness(88%) contrast(86%);
}
/* 5=направление (compass) — глубокий сине-зелёный */
.landing-map-list-item--5 { color: var(--landing-text); border-color: rgba(58, 128, 100, 0.30); }
.landing-map-list-item--5 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(25%) saturate(360%) hue-rotate(110deg) brightness(84%) contrast(88%);
}
/* 6=рекомендации (message-circle-more) — тёплый оливковый */
.landing-map-list-item--6 { color: var(--landing-text); border-color: rgba(106, 138, 90, 0.30); }
.landing-map-list-item--6 .landing-map-list-icon img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(16%) saturate(280%) hue-rotate(70deg) brightness(84%) contrast(85%);
}

/* ══════════════════════════════════════════════════════════
   Features — fixed uniform height on ALL sizes
   ══════════════════════════════════════════════════════════ */

.landing-features-grid {
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.landing-feature-card {
  --card-accent: var(--landing-primary);
  padding: 14px 22px;
  border-radius: 20px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: none;
  overflow: hidden;
  cursor: default;
}

/* Feature card stagger animation */
.landing-features-grid .landing-feature-card,
.landing-ai-grid .landing-feature-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.landing-features-grid .landing-feature-card.is-visible,
.landing-ai-grid .landing-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-feature-card > *:first-child {
  margin-top: 0;
}

.landing-feature-card > *:last-child {
  margin-bottom: 0;
}

.landing-feature-card:hover {
  transform: none;
}

/* Feature icon — color via currentColor (inlined SVG) */
.landing-feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-feature-icon svg,
.landing-feature-icon img {
  width: 32px;
  height: 32px;
}

/* AI grid icons — match card accent */
.landing-ai-card:nth-child(1) .landing-feature-icon { color: #3b7a8a; }
.landing-ai-card:nth-child(2) .landing-feature-icon { color: #4a6abf; }
.landing-ai-card:nth-child(3) .landing-feature-icon { color: #b8875a; }
.landing-ai-card:nth-child(4) .landing-feature-icon { color: #4a8a6a; }

/* Features grid icons — match card accent */
.landing-feature-card:nth-child(1) .landing-feature-icon { color: #3b4a8a; }
.landing-feature-card:nth-child(2) .landing-feature-icon { color: #b8875a; }
.landing-feature-card:nth-child(3) .landing-feature-icon { color: #3b7a8a; }
.landing-feature-card:nth-child(4) .landing-feature-icon { color: #4a8a6a; }
.landing-feature-card:nth-child(5) .landing-feature-icon { color: #8a6a3b; }
.landing-feature-card:nth-child(6) .landing-feature-icon { color: #5b6abf; }

.landing-feature-label {
  font-family: var(--landing-font-display);
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.3;
}

.landing-feature-desc {
  font-family: var(--landing-font-body);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.55;
}

/* Accent strip — each card gets its own color via --card-accent */
.landing-feature-card::before {
  background: linear-gradient(90deg, transparent, var(--card-accent, #3b4a8a), transparent) !important;
  opacity: 0.5 !important;
}

.landing-ai-grid {
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.landing-ai-card {
  padding: 30px 20px 26px;
  height: 260px;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   Audience — green checks, static cards
   ══════════════════════════════════════════════════════════ */

.landing-audience-grid {
  gap: 16px;
  max-width: 800px;
}

.landing-audience-card {
  padding: 24px 26px;
  border-radius: 20px;
  transition: none !important;
  cursor: default;
}

.landing-audience-card:hover {
  transform: none !important;
  border-color: var(--landing-glass-border, rgba(59, 74, 138, 0.06)) !important;
  box-shadow: var(--landing-glass-shadow) !important;
}

/* Green checkmark — filter on <img> to get #3a8a5a */
.landing-audience-icon {
  width: 32px;
  height: 32px;
  opacity: 0.9;
}

.landing-audience-icon img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(25%) saturate(380%) hue-rotate(95deg) brightness(85%) contrast(88%);
}

/* ── FAQ ──────────────────────────────────────────────── */

.landing-faq-list {
  max-width: 680px;
  gap: 12px;
}

.landing-faq-question {
  font-family: var(--landing-font-body);
  padding: 22px 26px;
  font-size: 1.04rem;
}

.landing-faq-question::after {
  font-size: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-faq-answer-wrap {
  animation: landingFaqOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-faq-answer {
  padding: 0 26px 22px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ── Final CTA ────────────────────────────────────────── */

.landing-final {
  padding: clamp(88px, 12vw, 150px) clamp(24px, 6vw, 64px);
}

.landing-final-bg {
  opacity: 0.65;
}

/* Ensure bottom CTA matches hero CTA exactly */
.landing-final .landing-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  font-family: var(--landing-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #3b4a8a 0%, #5b6abf 40%, #b8875a 100%);
  border: none;
  border-radius: var(--landing-radius-lg, 20px);
  box-shadow:
    0 6px 32px rgba(59, 74, 138, 0.35),
    0 2px 8px rgba(184, 135, 90, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: landingCtaPulse 4.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.landing-final .landing-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-final .landing-cta-primary:hover {
  box-shadow:
    0 14px 48px rgba(59, 74, 138, 0.45),
    0 4px 12px rgba(184, 135, 90, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.landing-final .landing-cta-primary:hover::before {
  transform: translateX(60%);
}

.landing-final .landing-cta-primary:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .landing-final .landing-cta-primary { animation: none; }
}

.landing-final-overlay {
  background:
    radial-gradient(ellipse 65% 45% at 50% 45%, rgba(184, 135, 90, 0.10) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(20, 20, 40, 0.72) 0%,
      rgba(20, 20, 40, 0.60) 50%,
      rgba(20, 20, 40, 0.82) 100%
    );
}

.landing-final-title {
  font-family: var(--landing-font-display);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 600;
}

.landing-final-text {
  font-family: var(--landing-font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────── */

.landing-footer {
  padding: 32px clamp(24px, 5vw, 56px);
}

.landing-footer-legal {
  gap: 8px 20px;
  margin-bottom: 14px;
}

.landing-footer-legal a {
  transition: color 0.2s;
}

.landing-footer-legal a:hover {
  color: var(--landing-primary, #3b4a8a);
}

/* ── Language modal ───────────────────────────────────── */

.landing-lang-modal {
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(26, 26, 46, 0.12), 0 4px 16px rgba(26, 26, 46, 0.06);
  padding: 26px;
}

.landing-lang-title {
  font-family: var(--landing-font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .landing-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-feature-card {
    height: 260px;
    padding: 12px 18px;
  }

  .landing-ai-card {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-card {
    height: auto;
    min-height: 0;
    padding: 20px 20px;
    overflow: visible;
  }

  .landing-feature-desc {
    display: block;
  }

  .landing-ai-grid {
    grid-template-columns: 1fr;
  }

  .landing-ai-card {
    height: auto;
    min-height: 0;
    padding: 26px 20px 22px;
    overflow: visible;
  }

  .landing-tags-field {
    padding: 36px 14px;
  }

  .landing-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

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

  .landing-map-list {
    max-width: 100%;
  }
}
