.hero {
  position: relative;
  width: 100%;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.12);
  filter: blur(40px);
  top: -120px;
  left: -80px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 42% 58% 60% 40%;
  background: rgba(34, 197, 94, 0.25);
  filter: blur(28px);
  bottom: -60px;
  right: 8%;
  pointer-events: none;
  animation: naturePulse 6s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bg);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 0 rgba(250, 250, 250, 0.15);
}

.hero h1 {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: rgba(10, 10, 10, 0.88);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: rgba(10, 10, 10, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(250, 250, 250, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-a {
  width: 160px;
  height: 160px;
  top: 18%;
  right: 12%;
  opacity: 0.5;
}

.hero-shape-b {
  width: 90px;
  height: 90px;
  bottom: 22%;
  left: 10%;
  opacity: 0.4;
}

.offers-section {
  padding: 72px 24px;
  background-color: var(--surface);
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-heading {
  text-align: center;
  margin-bottom: 36px;
}

.offers-heading .data-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.offers-heading h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
}

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

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

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 12px;
  background: rgba(15, 23, 42, 0.6);
}

.offer-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
}

.offer-card-body {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fbbf24;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.45;
}

.btn-offer {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.btn-offer:hover {
  opacity: 0.88;
  color: #f8fafc;
}

.info-section {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.info-section:nth-child(even) {
  background: rgba(20, 20, 20, 0.55);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.info-section h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 68ch;
}

.info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 600;
  border-radius: 10px;
  opacity: 1;
}

.info-cta:hover {
  opacity: 0.85;
  color: var(--bg);
}

.nature-vein {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--glowing-plants), transparent);
  opacity: 0.35;
  transform-origin: bottom center;
  animation: vineGrow 8s ease-in-out infinite;
}

.nature-vein-a {
  width: 3px;
  height: 180px;
  left: 6%;
  bottom: 0;
}

.nature-vein-b {
  width: 2px;
  height: 140px;
  right: 10%;
  bottom: 10%;
  animation-delay: 1.5s;
}

@keyframes vineGrow {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.2;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.45;
  }
}

@keyframes naturePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

.future-haze {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, var(--future) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.lab-panel {
  background: var(--lab);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08), inset 0 0 40px var(--hybrid);
}

.hybrid-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.glowing-plants-band {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.glowing-plants-band span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.15);
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.info-1-layout .lab-panel {
  order: 2;
}

.info-2-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-2-cards article {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(20, 20, 20, 0.7);
}

.info-2-cards h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.info-2-cards p {
  font-size: 0.9rem;
  margin: 0;
}

.info-3-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.info-3-aside {
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.2), rgba(20, 20, 20, 0.9));
  border-radius: 20px;
  padding: 28px 22px;
  border: 1px solid var(--border);
}

.info-3-aside strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-4-layout {
  max-width: 720px;
}

.info-4-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.info-4-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.info-4-list span {
  font-family: var(--font-mono);
  color: var(--accent);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
}

.info-5-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-5-visual {
  min-height: 220px;
  border-radius: 16px;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px var(--nature);
  position: relative;
  overflow: hidden;
}

.info-5-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.75));
}

.info-6-layout {
  text-align: center;
}

.info-6-layout p {
  margin-left: auto;
  margin-right: auto;
}

.info-6-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.info-6-mosaic .decor-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-6-mosaic img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.info-7-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.info-7-badge {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(145deg, var(--accent), var(--primary));
  box-shadow: 0 0 28px var(--glowing-plants);
}

.info-8-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-8-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-8-split > div {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.65);
}

.info-8-split h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.info-9-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: center;
}

.info-9-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 18px;
  margin: 16px 0;
}

.info-9-rail {
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.5);
  padding: 10px;
}

.info-9-rail img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.info-10-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.info-10-step {
  padding: 16px 12px;
  text-align: center;
  border-radius: 12px;
  background: var(--lab);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.info-10-step strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 20px;
  }

  .hybrid-rail,
  .info-1-layout,
  .info-3-layout,
  .info-5-layout,
  .info-7-layout,
  .info-8-split,
  .info-9-layout {
    grid-template-columns: 1fr;
  }

  .info-2-cards,
  .info-10-steps,
  .info-6-mosaic {
    grid-template-columns: 1fr;
  }

  .info-7-badge {
    width: 88px;
    height: 88px;
    font-size: 1.5rem;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .offer-bonus {
    font-size: 0.98rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .info-section,
  .offers-section,
  .hero {
    overflow-x: hidden;
  }

  .decor-wrap,
  .info-5-visual,
  .info-6-mosaic,
  .info-9-rail,
  .info-10-layout figure {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img,
  .info-6-mosaic img,
  .info-9-rail img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  .info-5-visual {
    min-height: 160px;
  }

  .hero-shape-a,
  .hero-shape-b {
    display: none;
  }

  .offer-logo {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }
}
