:root {
  --bg: #030617;
  --card: #0b1120;
  --aurora: #fbbf24; /* теплий золотий акцент */
  --blue: #6366f1;   /* індиго-акцент */
  --text-muted: #9ca3af;
}

/* ---- БАЗА ---- */

body {
  background:
    radial-gradient(circle at 10% 0%, #1d2138 0, #020617 52%, #020314 100%);
  color: #f9fafb;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--aurora);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--blue);
  text-decoration: underline;
}

/* ---- HEADER ---- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 6, 23, 0.92);
  backdrop-filter: blur(18px);
}

.nav-link {
  color: #e5e7eb;
  opacity: 0.85;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  opacity: 1;
}

/* ---- HERO (перша версія) ---- */

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(1050px at 80% 35%, rgba(251, 191, 36, 0.16), transparent 60%),
    radial-gradient(780px at 90% 70%, rgba(99, 102, 241, 0.2), transparent 56%),
    linear-gradient(135deg, #020617, #020314 70%);
  padding: 88px 0 104px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.04rem;
}

/* ---- HERO ВІЗУАЛ ---- */

.visual-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin-inline: auto;
}

.aurora-bg {
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(circle at 24% 28%, rgba(251, 191, 36, 0.7), transparent 46%),
    radial-gradient(circle at 74% 36%, rgba(96, 165, 250, 0.55), transparent 52%),
    radial-gradient(circle at 50% 74%, rgba(244, 114, 182, 0.55), transparent 56%);
  filter: blur(70px);
}

.grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cell {
  aspect-ratio: 1;
  border-radius: 18px;
  background: #020617;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}

.cell.glow {
  background:
    radial-gradient(circle at 26% 28%, #fde68a, #020617 70%);
  box-shadow:
    0 0 32px rgba(251, 191, 36, 0.6),
    inset 0 0 18px rgba(255, 255, 255, 0.09);
}

/* ---- БАЗОВІ СЕКЦІЇ / КАРТКИ ---- */

.section {
  padding: 110px 0;
}

.card {
  background: var(--card);
  border: none;
  border-radius: 22px;
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card p {
  color: var(--text-muted);
}

/* ---- FOOTER (перша частина) ---- */

footer {
  background: #020617;
}

footer p {
  color: var(--text-muted);
}

footer a:hover {
  color: var(--aurora);
  text-decoration: underline;
  transition: 0.3s;
}

@media (max-width: 991px) {
  footer .row {
    flex-direction: column;
    gap: 26px;
  }
}

/* ---- PACKAGES (перша версія) ---- */

.packages-creative {
  padding: 110px 0;
  background: var(--bg);
}

.section-header .label {
  color: var(--aurora);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.9vw, 3rem);
  margin: 12px 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.packages-flow {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
  position: relative;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  transition: all 0.3s ease;
}

.package-item:hover {
  transform: translateY(-6px);
}

.package-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.45rem;
  color: #020617;
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.55);
}

.circle-left {
  order: 0;
}

.circle-right {
  order: 1;
}

.package-info {
  background: var(--card);
  padding: 24px 28px;
  border-radius: 20px;
  flex: 1;
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.85);
}

.package-info h5 {
  color: var(--aurora);
  font-weight: 800;
  margin-bottom: 10px;
}

.package-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.package-info button {
  border: none;
  border-radius: 999px;
  padding: 12px 0;
  width: 100%;
  font-weight: 700;
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  color: #020617;
  cursor: pointer;
  transition: 0.25s ease;
}

.package-info button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.7);
}

.package-item.featured .package-info {
  background: linear-gradient(180deg, #0f172a, var(--card));
  border: 2px solid var(--aurora);
}

.package-item .badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aurora);
  color: #020617;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

/* ---- АДАПТИВ ---- */

@media (max-width: 991px) {
  .hero .row {
    flex-direction: column-reverse;
  }

  .visual-wrap {
    max-width: 92%;
    margin: 2.5rem auto;
  }
}

@media (max-width: 576px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cell {
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .package-item {
    flex-direction: column !important;
    text-align: center;
  }

  .package-circle {
    margin-bottom: 1.1rem;
  }

  .package-info button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .card {
    margin-bottom: 1.1rem;
  }
}

/* ---- CONTACT / HOW / CARD HOVER ---- */

#contact .card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}

@media (max-width: 991px) {
  #contact .row {
    flex-direction: column;
  }

  #contact .col-lg-5,
  #contact .col-lg-7 {
    margin-bottom: 2.1rem;
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 30px rgba(251, 191, 36, 0.4),
    0 0 22px rgba(99, 102, 241, 0.3),
    0 0 18px rgba(244, 114, 182, 0.3);
}

@media (max-width: 991px) {
  #how .row {
    flex-direction: column;
  }

  #how .col-md-4 {
    margin-bottom: 2rem;
  }

  .card {
    text-align: center;
  }
}

/* ---- ДРУГЕ ВИЗНАЧЕННЯ BODY (оверрайд) ---- */

body {
  background-color: #020617;
  color: var(--text-muted);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
}

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

/* ---- TOP STRIP ---- */

.top-strip {
  background: #020314;
  color: #f9fafb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ---- SITE HEADER ---- */

.site-header {
  background: #020617;
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.main-nav .nav-link {
  font-size: 0.96rem;
  color: #cbd5f5;
  padding: 0.3rem 0;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aurora), var(--blue));
  transition: width 0.2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #ffffff;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after {
  width: 100%;
}

.header-actions .btn-outline-light {
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.header-actions .btn-outline-light:hover {
  background-color: rgba(148, 163, 184, 0.25);
  color: #ffffff;
}

.header-actions .btn-success {
  background: var(--aurora);
  border-color: var(--aurora);
  color: #020617 !important;
  font-weight: 600;
}

.header-actions .btn-success:hover {
  filter: brightness(1.05);
}

/* ---- HERO (друга версія) ---- */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px at 78% 28%, rgba(251, 191, 36, 0.18), transparent 55%),
    linear-gradient(135deg, #020617, #020314 68%);
  padding: 90px 0;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.3rem);
  font-weight: 800;
  color: #f9fafb;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 36rem;
}

.hero-buttons .btn-lg {
  padding-inline: 2rem;
  border-radius: 999px;
}

.hero-buttons .btn-success {
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  border: none;
  color: #020617 !important;
  font-weight: 700;
}

.hero-buttons .btn-success:hover {
  filter: brightness(1.06);
}

.hero-buttons .btn-outline-light {
  border-width: 2px;
  border-color: rgba(226, 232, 240, 0.85);
  color: #e5e7eb;
}

.hero-buttons .btn-outline-light:hover {
  background-color: rgba(15, 23, 42, 0.8);
  color: #ffffff;
}

.hero-image-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.hero-image {
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(15, 23, 42, 0.95);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ---- СЕКЦІЇ 2.0 ---- */

.section {
  padding: 110px 0;
}

.section-how,
.section-contact {
  background: #020617;
}

.section-logic,
.site-footer {
  background: #030712;
}

.section-heading {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
}

.section-how .section-heading {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
}

.section-logic .section-heading,
.section-contact .section-heading {
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.55);
}

.section-text {
  color: var(--text-muted);
}

/* ---- PACKAGES (оновлена, з фоном) ---- */

.packages-creative {
  position: relative;
  padding: 110px 0;
  background: url("../img/about.png") no-repeat center center / cover fixed;
  overflow: hidden;
}

.packages-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 23, 0.78);
  z-index: 1;
}

.packages-inner {
  position: relative;
  z-index: 2;
}

.section-header .section-label {
  color: var(--aurora);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-header .section-title {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin: 12px 0;
}

.section-header .section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 34rem;
  margin: 0 auto;
}

.packages-flow {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  margin-top: 84px;
  position: relative;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  max-width: 660px;
  width: 100%;
}

.package-circle {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #020617;
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.55);
}

.circle-right {
  order: 2;
}

.package-info {
  background: #020617;
  padding: 26px 30px;
  border-radius: 22px;
  flex: 1;
  box-shadow: 0 0 20px rgba(15, 23, 42, 0.95);
}

.package-title {
  color: var(--aurora);
  font-weight: 800;
  margin-bottom: 10px;
}

.package-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.package-item.featured .package-info {
  border: 1px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.package-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aurora);
  color: #020617;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

.package-btn {
  width: 100%;
  border-radius: 999px;
  padding: 12px 0;
  font-weight: 700;
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  color: #020617;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.package-btn:hover {
  filter: brightness(1.06);
}

@media (max-width: 575.98px) {
  .package-item {
    flex-direction: column;
    align-items: stretch;
  }

  .circle-right {
    order: 0;
  }

  .package-circle {
    align-self: center;
  }
}

/* ---- HOW CARDS ---- */

.how-card {
  background: linear-gradient(145deg, #020617, #030712);
  border-radius: 22px;
  transition: 0.3s;
  border: 1px solid transparent;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.7);
}

.how-card-green {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.2);
}

.how-card-blue {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.2);
}

.how-card-purple {
  border-color: rgba(244, 114, 182, 0.35);
  box-shadow: 0 0 24px rgba(244, 114, 182, 0.2);
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.86);
}

.how-icon {
  margin-bottom: 1.1rem;
}

.how-icon-green {
  filter: drop-shadow(0 0 6px var(--aurora));
}

.how-icon-blue {
  filter: drop-shadow(0 0 6px var(--blue));
}

.how-icon-purple {
  filter: drop-shadow(0 0 6px #f472b6);
}

.how-title {
  font-weight: 700;
}

.how-title-green {
  color: var(--aurora);
  text-shadow: 0 0 6px rgba(251, 191, 36, 0.9);
}

.how-title-blue {
  color: var(--blue);
  text-shadow: 0 0 6px rgba(99, 102, 241, 0.9);
}

.how-title-purple {
  color: #f472b6;
  text-shadow: 0 0 6px rgba(244, 114, 182, 0.9);
}

.how-text {
  color: var(--text-muted);
}

/* ---- LOGIC ---- */

.section-heading-green {
  color: var(--aurora);
}

.logic-card {
  background: linear-gradient(180deg, #020617, #030712);
  border-radius: 22px;
  border: 2px solid var(--aurora);
  box-shadow: 0 0 34px rgba(251, 191, 36, 0.3);
  position: relative;
}

.logic-image {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 22px rgba(15, 23, 42, 0.95);
}

.logic-list {
  color: var(--text-muted);
  text-align: left;
  padding-left: 0;
}

.logic-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
}

.logic-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--aurora));
}

/* ---- CONTACT ---- */

.section-contact .section-heading {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.contact-card {
  background: linear-gradient(145deg, #020617, #030712);
  border-radius: 22px;
  border: 2px solid transparent;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.contact-card-green {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.25);
}

.contact-card-blue {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 32px rgba(99, 102, 241, 0.25);
}

.contact-card-purple {
  border-color: rgba(244, 114, 182, 0.35);
  box-shadow: 0 0 32px rgba(244, 114, 182, 0.25);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.86);
}

.contact-title {
  margin-bottom: 1rem;
}

.contact-title-green {
  color: var(--aurora);
}

.contact-title-blue {
  color: var(--blue);
}

.contact-title-purple {
  color: #f472b6;
}

/* ---- FOOTER (розширена частина) ---- */

.site-footer {
  background: #030712;
  padding: 90px 0;
  color: var(--text-muted);
  position: relative;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  margin-bottom: 1.1rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-heading-blue {
  color: var(--blue);
  text-shadow: 0 0 6px rgba(99, 102, 241, 0.55);
}

.footer-heading-green {
  color: var(--aurora);
  text-shadow: 0 0 6px rgba(251, 191, 36, 0.55);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-img {
  display: block;
  max-width: 150px;
  height: auto;
}

.footer-img-invert {
  filter: brightness(1.1) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding-top: 22px;
  font-size: 0.9rem;
}

/* ---- COOKIES ---- */

.section-cookies {
  background: #020617;
  padding: 90px 0;
}

.cookies-title {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  font-weight: 700;
}

.cookies-intro {
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto;
}

.cookies-list {
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.85;
}

.cookies-item {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.7rem;
}

.cookies-dot {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.cookies-dot-blue {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.7);
}

.cookies-dot-green {
  background: var(--aurora);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.7);
}

.cookies-dot-purple {
  background: #f472b6;
  box-shadow: 0 0 8px rgba(244, 114, 182, 0.7);
}

.cookies-sublist {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.cookies-sublist li {
  margin-bottom: 0.35rem;
}

.link-accent {
  color: var(--blue);
}

.link-accent:hover,
.link-accent:focus {
  color: #ffffff;
}

/* ---- LOGIN ---- */

.section-login {
  background: #020617;
  padding: 90px 0;
}

.login-card {
  background: linear-gradient(145deg, #020617, #030712);
  border-radius: 22px;
  border: 2px solid var(--aurora);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.3);
}

.login-title {
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 700;
}

.login-label {
  color: var(--text-muted);
}

.login-input {
  background: #020617;
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.login-input::placeholder {
  color: #6b7280;
}

.login-input:focus {
  background: #020314;
  color: #ffffff;
  border-color: var(--aurora);
  box-shadow: 0 0 0 0.1rem rgba(251, 191, 36, 0.35);
}

.btn-login {
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  color: #020617;
  font-weight: 700;
  padding: 12px;
  border-radius: 999px;
  border: none;
  transition: 0.25s ease;
}

.btn-login:hover,
.btn-login:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.7);
  color: #020617;
}

.login-success-message {
  display: none;
  color: var(--aurora);
}

.login-helper-text {
  color: var(--text-muted);
}

/* ---- PRIVACY / REGISTER / TERMS / RESPONSIBLE ---- */

.section-privacy {
  background: #020617;
  padding: 90px 0;
}

.privacy-list {
}

.section-register {
  background: #020617;
  padding: 90px 0;
}

.register-card {
  background: linear-gradient(145deg, #020617, #030712);
  border-radius: 22px;
  border: 2px solid var(--blue);
  box-shadow: 0 0 32px rgba(99, 102, 241, 0.3);
}

.register-title {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 700;
}

.register-label {
  color: var(--text-muted);
}

.register-input {
  background: #020617;
  color: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.45);
}

.register-input::placeholder {
  color: #6b7280;
}

.register-input:focus {
  background: #020314;
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 0.1rem rgba(99, 102, 241, 0.35);
}

.btn-register {
  background: linear-gradient(135deg, var(--aurora), var(--blue));
  color: #020617;
  font-weight: 700;
  padding: 12px;
  border-radius: 999px;
  border: none;
  transition: 0.25s ease;
}

.btn-register:hover,
.btn-register:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.7);
  color: #020617;
}

.register-success-message {
  display: none;
  color: var(--blue);
}

.register-helper-text {
  color: var(--text-muted);
}

.section-responsible {
  background: #020617;
  padding: 90px 0;
}

.responsible-title {
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 700;
}

.responsible-intro {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.section-terms {
  background: #020617;
  padding: 90px 0;
}

.terms-title {
  color: var(--aurora);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 700;
}

.terms-intro {
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto;
}
