:root {
  --bg: #0a1020;
  --bg2: #0b1630;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .085);
  --border: rgba(255, 255, 255, .14);
  --border2: rgba(255, 255, 255, .20);

  --text: #f2f6ff;
  --muted: rgba(242, 246, 255, .74);

  --brand: #ffcc66;
  --brand2: #7cf7ff;
  --brand3: #a78bfa;

  --shadow: 0 18px 46px rgba(0, 0, 0, .40);
  --shadow2: 0 10px 26px rgba(0, 0, 0, .32);

  --r: 16px;
  --r2: 22px;

  --container: 1180px;
  --navH: 72px;

  --focus: 0 0 0 4px rgba(124, 247, 255, .22);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(167, 139, 250, .22) 0%, rgba(167, 139, 250, 0) 62%),
    radial-gradient(900px 520px at 82% 14%, rgba(124, 247, 255, .16) 0%, rgba(124, 247, 255, 0) 62%),
    radial-gradient(1200px 700px at 50% 110%, rgba(255, 204, 102, .12) 0%, rgba(255, 204, 102, 0) 66%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1rem 0;
  font-size: 1.02rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .65rem 0;
  letter-spacing: -.02em;
  color: var(--text);
}

::selection {
  background: rgba(255, 204, 102, .25)
}

.container {
  max-width: var(--container)
}

.py-5 {
  padding-top: 4.2rem !important;
  padding-bottom: 4.2rem !important
}


header.fixed-top {
  background: rgba(8, 12, 22, .62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
  min-height: var(--navH);
  padding: .7rem 0;
}

.navbar .navbar-brand {
  font-weight: 900;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.navbar .navbar-brand::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--brand), var(--brand2), var(--brand3), var(--brand));
  box-shadow: 0 0 0 5px rgba(255, 204, 102, .10);
}

.navbar .navbar-nav {
  align-items: center
}

.navbar .nav-link {
  color: rgba(242, 246, 255, .78);
  font-weight: 800;
  font-size: .98rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.navbar .nav-link:hover {
  background: rgba(255, 255, 255, .07);
  color: rgba(242, 246, 255, .95);
  transform: translateY(-1px);
}

.navbar .nav-link:focus {
  outline: none;
  box-shadow: var(--focus)
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: .45rem .6rem;
}

.navbar-toggler:focus {
  box-shadow: var(--focus)
}

.navbar-dark .navbar-toggler-icon {
  filter: brightness(1.25)
}

@media (max-width:991.98px) {
  .navbar-collapse {
    margin-top: .65rem;
    padding: .8rem;
    background: rgba(10, 16, 32, .70);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    backdrop-filter: blur(16px);
  }

  .navbar .nav-link {
    width: 100%
  }
}


.btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .15px;
  padding: .78rem 1.1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:focus {
  outline: none;
  box-shadow: var(--focus)
}

.btn-lg {
  padding: .95rem 1.35rem
}

.btn-accent {
  color: #0b1020;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(120% 140% at 10% 20%, rgba(124, 247, 255, .65) 0%, rgba(124, 247, 255, 0) 55%),
    radial-gradient(120% 140% at 90% 20%, rgba(255, 204, 102, .75) 0%, rgba(255, 204, 102, 0) 55%),
    linear-gradient(135deg, rgba(255, 204, 102, 1) 0%, rgba(124, 247, 255, 1) 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .40)
}

.btn-accent:active {
  transform: translateY(0)
}

.btn-outline-light {
  background: transparent;
  color: rgba(242, 246, 255, .92);
  border: 1px solid rgba(255, 255, 255, .22);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .28);
}


.hero-section {
  position: relative;
  min-height: 78vh;
  padding-top: var(--navH);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03) brightness(.86);
  transform: scale(1.035);
}

.hero-overlay {
  position: relative;
  width: 100%;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 5.2rem 0 3.2rem 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 22, .88) 0%, rgba(8, 12, 22, .58) 45%, rgba(8, 12, 22, .18) 75%, rgba(8, 12, 22, .06) 100%),
    radial-gradient(900px 520px at 20% 20%, rgba(255, 204, 102, .22) 0%, rgba(255, 204, 102, 0) 62%),
    radial-gradient(900px 520px at 70% 15%, rgba(124, 247, 255, .16) 0%, rgba(124, 247, 255, 0) 62%);
}

.hero-title {
  font-weight: 950;
  font-size: clamp(2.1rem, 4.25vw, 3.7rem);
  line-height: 1.08;
  margin: 0 0 1rem 0;
  text-shadow: 0 10px 26px rgba(0, 0, 0, .45);
}

.hero-subtitle {
  max-width: 920px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: rgba(242, 246, 255, .80);
  margin: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: linear-gradient(180deg, rgba(10, 16, 32, 0) 0%, rgba(10, 16, 32, 1) 100%);
}


.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h1,
.section-header h2 {
  font-weight: 950;
  font-size: clamp(1.65rem, 2.55vw, 2.6rem);
}

.section-header p {
  max-width: 860px;
  margin: .65rem auto 0 auto;
  color: rgba(242, 246, 255, .72);
}


#about {
  position: relative;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(255, 204, 102, .10) 0%, rgba(255, 204, 102, 0) 62%),
    radial-gradient(900px 520px at 85% 20%, rgba(124, 247, 255, .09) 0%, rgba(124, 247, 255, 0) 62%);
  pointer-events: none;
}

#about .row {
  position: relative
}

#about .col-md-6 p {
  margin: 0;
  padding: 18px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
}


.content-section,
.contact-form,
.thank-you-card,
.article-content,
.stat-card,
.benefit-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.content-section {
  padding: 22px 22px
}

.content-section h3 {
  font-weight: 950;
  font-size: 1.22rem;
  margin-top: 1.6rem;
}

.content-section h3:first-child {
  margin-top: 0
}

.benefit-item {
  padding: 18px 18px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(380px 220px at 15% 10%, rgba(255, 204, 102, .14) 0%, rgba(255, 204, 102, 0) 60%),
    radial-gradient(420px 260px at 85% 20%, rgba(124, 247, 255, .10) 0%, rgba(124, 247, 255, 0) 62%);
  opacity: .9;
  pointer-events: none;
}

.benefit-item:hover {
  transform: translateY(-2px);
  background: var(--panel2);
  border-color: rgba(255, 255, 255, .16);
}

.benefit-item h5 {
  position: relative;
  font-weight: 950;
  font-size: 1.06rem;
  margin: 0 0 .35rem 0;
}

.benefit-item p {
  position: relative;
  margin: 0
}

.benefit-icon {
  position: relative;
  font-size: 30px;
  margin-right: 12px;
  color: var(--brand2);
  filter: drop-shadow(0 10px 20px rgba(124, 247, 255, .10));
}


.stat-card {
  padding: 22px 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(420px 240px at 15% 15%, rgba(255, 204, 102, .16) 0%, rgba(255, 204, 102, 0) 60%),
    radial-gradient(420px 240px at 85% 10%, rgba(167, 139, 250, .14) 0%, rgba(167, 139, 250, 0) 60%);
  pointer-events: none;
}

.stat-number {
  position: relative;
  font-weight: 950;
  font-size: 2.35rem;
  letter-spacing: -.03em;
  margin-bottom: .35rem;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand2) 50%, var(--brand3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-text {
  position: relative;
  margin: 0;
  color: rgba(242, 246, 255, .74)
}


.article-content {
  padding: 20px 20px
}

.article-content h4 {
  font-weight: 950;
  font-size: 1.22rem;
  margin: 0 0 .55rem 0;
}

.article-content p:last-child {
  margin-bottom: 0
}


.img-fluid.rounded {
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow2);
}


.contact-form {
  padding: 24px 22px
}

.form-label {
  color: rgba(242, 246, 255, .90);
  font-weight: 900;
  margin-bottom: .35rem;
}

.form-control {
  background: rgba(9, 13, 24, .52);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(242, 246, 255, .92);
  border-radius: 14px;
  padding: .78rem .9rem;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.form-control::placeholder {
  color: rgba(242, 246, 255, .46)
}

.form-control:focus {
  background: rgba(9, 13, 24, .62);
  border-color: rgba(124, 247, 255, .45);
  box-shadow: var(--focus);
}


.contact-info {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.contact-info .material-icons-outlined {
  font-size: 22px;
  color: var(--brand2);
}

.contact-email {
  color: rgba(124, 247, 255, .95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-email:hover {
  color: rgba(242, 246, 255, .96)
}


.thank-you-section {
  min-height: calc(100vh - 160px);
  padding-top: calc(var(--navH) + 40px);
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}

.thank-you-card {
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
}

.thank-you-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 280px at 15% 20%, rgba(255, 204, 102, .16) 0%, rgba(255, 204, 102, 0) 60%),
    radial-gradient(520px 280px at 85% 20%, rgba(124, 247, 255, .12) 0%, rgba(124, 247, 255, 0) 62%);
  pointer-events: none;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow2);
  position: relative;
}

.thank-you-icon .material-icons-outlined {
  font-size: 44px;
  color: var(--brand);
  filter: drop-shadow(0 12px 22px rgba(255, 204, 102, .12));
}

.thank-you-title {
  position: relative;
  font-weight: 950;
  margin: .85rem 0 .7rem 0;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.thank-you-message,
.thank-you-submessage {
  position: relative;
  font-size: 1.06rem;
  margin: 0 auto .85rem auto;
  max-width: 760px;
}

.thank-you-actions {
  position: relative;
  display: flex;
  gap: .85rem;
  justify-content: center;
  flex-wrap: wrap;
}


.section-bg {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .01) 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}


footer {
  background: rgba(6, 9, 16, .85) !important;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

footer h5,
footer h6 {
  font-weight: 950;
  margin-bottom: .55rem;
}

footer p {
  margin: 0;
  color: rgba(242, 246, 255, .70)
}

footer a.text-light {
  color: rgba(242, 246, 255, .80) !important;
  display: inline-block;
  padding: .2rem 0;
  transition: color .18s ease, transform .18s ease;
}

footer a.text-light:hover {
  color: var(--brand2) !important;
  transform: translateX(2px);
}

footer hr {
  border-color: rgba(255, 255, 255, .12)
}


.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  padding: 14px 16px;
  background: rgba(8, 12, 22, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow2);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  font-size: .98rem
}

.cookie-banner a {
  color: rgba(124, 247, 255, .95);
  text-decoration: underline;
  text-underline-offset: 3px;
}


@media (max-width:575.98px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px
  }

  .contact-form {
    padding: 20px 16px
  }

  .thank-you-card {
    padding: 28px 18px
  }

  #about .col-md-6 p {
    padding: 16px 14px
  }

  .hero-overlay {
    padding: 4.6rem 0 2.8rem 0
  }
}


@media (prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important
  }
}