/* Дополнительные стили для лендинга NanoBanana */

.nanoland-body {
  background: radial-gradient(circle at 20% 0%, rgba(79, 70, 229, 0.08), transparent 45%), var(--bg);
}

.nanoland-gradient {
  opacity: 0.8;
}

.nanoland-header__inner {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.nanoland-header__inner .landing-brand {
  flex-shrink: 0;
}

.nanoland-nav {
  gap: 20px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.nanoland-nav a {
  font-weight: 600;
}

.nanoland-header__inner .landing-header__cta {
  margin-left: auto;
  flex-shrink: 0;
}

.nl-hero {
  padding: 120px 0 80px;
}

.nl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: stretch;
}

.nl-hero__content h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.nl-hero__content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--muted);
}

.nl-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.nl-hero__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text);
  font-weight: 500;
}

.nl-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.nl-hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.nl-hero__metrics article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.nl-hero__metrics strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nl-hero__card {
  position: relative;
}

.nl-screen {
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  border-radius: 32px;
  padding: 28px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nl-screen__header,
.nl-screen__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nl-screen__body {
  flex: 1;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-screen__conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-screen__bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.nl-screen__bubble--user {
  background: rgba(59, 130, 246, 0.2);
}

.nl-screen__bubble--bot {
  background: rgba(248, 250, 252, 0.08);
}

.nl-screen__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.nl-screen__timeline div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.nl-screen__timeline span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.nl-screen__timeline p {
  font-size: 13px;
  color: rgba(248, 250, 252, 0.9);
  margin-top: 6px;
}

.nl-screen__result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.nl-screen__result div {
  border-radius: 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(14, 165, 233, 0.2));
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.nl-screen__result strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.nl-screen__result p {
  font-size: 13px;
  color: rgba(248, 250, 252, 0.88);
}

.nl-screen__footer a {
  color: #22d3ee;
  font-weight: 600;
}

.nl-section {
  padding: 96px 0;
}

.nl-section--dark {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.88));
  color: #f8fafc;
}

.nl-section__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.nl-section__intro h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}

.nl-section__intro p {
  color: var(--muted);
}

.nl-section--dark .nl-section__intro p {
  color: rgba(248, 250, 252, 0.78);
}

.nl-usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.nl-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nl-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nl-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nl-section--dark .nl-card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(99, 102, 241, 0.4);
  color: #f8fafc;
}

.nl-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.nl-steps article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.nl-steps span {
  font-size: 20px;
  font-weight: 700;
  color: #c4b5fd;
}

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

.nl-pillars div {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.nl-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.nl-gallery__item {
  border-radius: 28px;
  padding: 24px;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.nl-gallery__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.nl-pricing {
  background: linear-gradient(180deg, rgba(237, 242, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.nl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.nl-pricing__card {
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 34px 64px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nl-pricing__badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-dark);
}

.nl-pricing__card ul {
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.nl-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.nl-faq__grid article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.nl-cta-banner {
  margin-top: 40px;
  border-radius: 30px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(124, 58, 237, 0.9));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .nl-hero__grid {
    grid-template-columns: 1fr;
  }
  .nl-screen {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .nanoland-nav {
    display: none;
  }
  .nl-section {
    padding: 72px 0;
  }
  .nl-hero__content p {
    font-size: 16px;
  }
  .nl-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .nl-hero {
    padding-top: 90px;
  }
  .nl-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .nl-screen {
    padding: 22px;
  }
  .landing-header__cta {
    display: none;
  }
}
