body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0c0e1d;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #0c0e1d;
  transition: all .5s;
}

/* CONTAINER */

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;

  background: linear-gradient(90deg, #caa55b, #f5e1a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

/* MENU */

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  transition: .3s;
}

.nav-menu a:hover {
  /*color: #000;*/
}

/* BUTTON */

.cta-btn {

  background: linear-gradient(90deg, #caa55b, #e8d090);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: .3s;
  box-shadow: 0 0 8px rgba(202, 165, 91, 0.6);
}

.cta-btn:hover {

  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(202, 165, 91, 0.8);

}

/* MOBILE */

.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #444;
}

.mobile-menu.show {
  display: flex;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .nav-menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }

}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: linear-gradient(to bottom right,
      #020617,
      #020617,
      rgba(15, 23, 42, 0.3));
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #020617;
  color: white;
}

/* HERO SECTION */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

/* BACKGROUND GRADIENT */

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, #020617, #020617, #0f172a);
}

/* GOLD BLUR */

.gold-blur1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 380px;
  height: 380px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.gold-blur2 {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  filter: blur(120px);
}

/* CONTAINER */

.hero-container {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.hero-tag {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 26px;
  color: #e5c26f;
  font-style: italic;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-highlight {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text-small {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.hero-highlight-small {
  font-size: 16px;
  margin-bottom: 10px;
}

.gold-text {
  color: #e5c26f;
  font-weight: 600;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary {
  background: linear-gradient(90deg, #d4af37, #f0d98c);
  color: black;
  padding: 16px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  border: 1px solid #d4af37;
  padding: 16px 28px;
  border-radius: 6px;
  color: #e5c26f;
  text-decoration: none;
  transition: .3s;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* IMAGE */

.hero-right {
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  max-width: 420px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(to bottom, #d4af3720, transparent);
  border-radius: 24px;
  filter: blur(30px);
}

.image-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, #020617, transparent);
  border-radius: 0 0 18px 18px;
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.delay1 {
  animation-delay: .2s;
}

.delay2 {
  animation-delay: .4s;
}

.delay3 {
  animation-delay: .6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media(max-width:1024px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-title {
    font-size: 42px;
  }

}

:root {
  --bg: #07080b;
  --text: #e9edf5;
  --muted: rgba(233, 237, 245, .72);
  --gold: #d6b35e;
  --card-bg: rgba(255, 255, 255, .06);
  --card-border: rgba(255, 255, 255, .12);
  --card-border-hover: rgba(214, 179, 94, .45);
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 50% -100px, rgba(214, 179, 94, .14), transparent 60%),
    radial-gradient(700px 500px at 80% 0, rgba(120, 140, 255, .10), transparent 60%),
    var(--bg);
  color: var(--text);
}

.section-padding {
  padding: 64px 16px;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.stack-12 {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stack-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.desc {
  margin: 0;
  margin-top: 14px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 94, .65), transparent);
  opacity: .9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 640px) {
  h2 {
    font-size: 26px;
  }

  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.glass-card {
  padding: 16px;
  /* display:flex; */
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  min-height: 56px;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
}

.brand {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  user-select: none;
}

:root {
  --bg: #07080b;
  --text: #e9edf5;
  --muted: rgba(233, 237, 245, .72);
  --muted2: rgba(233, 237, 245, .62);

  --gold: #d6b35e;
  --goldLight: #f0d48a;

  --cardBg: rgba(255, 255, 255, .06);
  --cardBorder: rgba(255, 255, 255, .12);
  --cardBorderHover: rgba(214, 179, 94, .45);

  --shadowGlow: 0 0 0 1px rgba(214, 179, 94, .10), 0 12px 40px rgba(214, 179, 94, .12);
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 50% -140px, rgba(214, 179, 94, .14), transparent 60%),
    radial-gradient(700px 500px at 80% 0, rgba(120, 140, 255, .10), transparent 60%),
    var(--bg);
  color: var(--text);
}

.section-padding {
  padding: 72px 16px;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
}

.stack-16 {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.stack-4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.center {
  text-align: center;
}

.kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  h2 {
    font-size: 36px;
  }

  .desc {
    font-size: 18px;
  }
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.glass-card {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--cardBorder);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .5s ease, border-color .5s ease, box-shadow .5s ease;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .25);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px 220px at 30% 10%, rgba(214, 179, 94, .14), transparent 60%);
  opacity: .0;
  transition: opacity .5s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--cardBorderHover);
  box-shadow: var(--shadowGlow);
}

.glass-card:hover::before {
  opacity: 1;
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  transition: transform .3s ease;
}

.glass-card:hover .icon {
  transform: scale(1.1);
}

h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0;
  color: var(--muted2);
  line-height: 1.7;
  font-size: 15px;
}

.cta-wrap {
  display: flex;
  justify-content: center;
}

.btn {
  border: 0;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  color: #0b0c10;
  background: linear-gradient(90deg, var(--gold), var(--goldLight));
  box-shadow: 0 10px 30px rgba(214, 179, 94, .18);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 44px rgba(214, 179, 94, .22);
  filter: brightness(1.02);
}

.btn:active {
  transform: scale(.99);
}

/* small toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}



body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07080b;
  color: #e9edf5;
}

.section-padding {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(214, 179, 94, .12), transparent);
}

.container {
  position: relative;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.center {
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
}

h2 {
  font-size: 32px;
  margin-top: 10px;
}

@media(min-width:768px) {
  h2 {
    font-size: 40px
  }
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

@media(min-width:768px) {
  .glass-card {
    padding: 60px;
  }
}

.quote {
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
}

.quote-light {
  color: #f0d48a;
}

.quote-dark {
  color: #e9edf5;
}

.gold-line {
  height: 2px;
  width: 90px;
  background: #d6b35e;
  margin: 20px auto;
}

.text-muted {
  color: rgba(233, 237, 245, .7);
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
  margin: auto;
}

.highlight {
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}

.block-card {
  padding: 40px;
  border-left: 4px solid #d6b35e;
}

.block-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  -webkit-background-clip: text;
  color: transparent;
}

.block-card h4 {
  margin-top: 20px;
  margin-bottom: 6px;
}

.full-line {
  height: 1px;
  background: rgba(214, 179, 94, .6);
  margin: 25px 0;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07080b;
  color: #e9edf5;
}

.section-padding {
  padding: 80px 20px;
}

.container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.center {
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
}

h2 {
  font-size: 32px;
  margin-top: 10px;
}

@media(min-width:768px) {
  h2 {
    font-size: 40px
  }
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 94, .5);
  box-shadow: 0 12px 40px rgba(214, 179, 94, .15);
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  opacity: .5;
  transition: .3s;
}

.glass-card:hover .top-line {
  opacity: 1;
}

.phase {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6b35e;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.4;
}

.text-muted {
  color: rgba(233, 237, 245, .7);
  line-height: 1.7;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07080b;
  color: #e9edf5;
}

.section-padding {
  padding: 80px 20px;
}

.container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.center {
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
}

h2 {
  font-size: 32px;
  margin-top: 10px;
}

@media(min-width:768px) {
  h2 {
    font-size: 40px
  }
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 94, .5);
  box-shadow: 0 12px 40px rgba(214, 179, 94, .15);
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  opacity: .5;
  transition: .3s;
}

.glass-card:hover .top-line {
  opacity: 1;
}

.phase {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6b35e;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.4;
}

.text-muted {
  color: rgba(233, 237, 245, .7);
  line-height: 1.7;
}




body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07080b;
  color: #e9edf5;
}

.section-padding {
  padding: 80px 20px;
}

.container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.center {
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
}

h2 {
  font-size: 32px;
  margin-top: 10px;
}

@media(min-width:768px) {
  h2 {
    font-size: 40px
  }
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 94, .5);
  box-shadow: 0 12px 40px rgba(214, 179, 94, .15);
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  opacity: .5;
  transition: .3s;
}

.glass-card:hover .top-line {
  opacity: 1;
}

.phase {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6b35e;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.4;
}

.text-muted {
  color: rgba(233, 237, 245, .7);
  line-height: 1.7;
}





body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #07080b;
  color: #e9edf5;
}

.section-padding {
  padding: 80px 20px;
}

.container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.center {
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
}

h2 {
  font-size: 32px;
  margin-top: 10px;
}

@media(min-width:768px) {
  h2 {
    font-size: 40px
  }
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.glass-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 179, 94, .5);
  box-shadow: 0 12px 40px rgba(214, 179, 94, .15);
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  opacity: .5;
  transition: .3s;
}

.glass-card:hover .top-line {
  opacity: 1;
}

.phase {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d6b35e;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.4;
}

.text-muted {
  color: rgba(233, 237, 245, .7);
  line-height: 1.7;
}

.fa-block {
  padding: 85px 20px;
  position: relative;
  overflow: hidden;
  background: #07080b;
  color: #e9edf5;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fa-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #07080b, rgba(214, 179, 94, .06), #07080b);
}

.fa-wrap {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fa-tag {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
  margin: 0;
}

.fa-heading {
  font-size: 32px;
  margin: 0;
}

@media(min-width:768px) {
  .fa-heading {
    font-size: 40px;
  }
}

.fa-panel {
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media(min-width:768px) {
  .fa-panel {
    padding: 60px;
  }
}

.fa-copy {
  color: rgba(233, 237, 245, .7);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

@media(min-width:768px) {
  .fa-copy {
    font-size: 20px;
  }
}

.fa-bold {
  color: #e9edf5;
  font-weight: 700;
}

.fa-value {
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 28px;
}

.fa-rule {
  height: 1px;
  background: rgba(214, 179, 94, .55);
  border: none;
  margin: 0;
}

.fa-note {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.fa-big {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  -webkit-background-clip: text;
  color: transparent;
}


.pa-about {
  padding: 90px 20px;
  background: #07080b;
  color: #e9edf5;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pa-container {
  max-width: 1150px;
  margin: auto;
}

.pa-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: center;
}

@media(min-width:1024px) {
  .pa-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.pa-image-box {
  position: relative;
  max-width: 420px;
  margin: auto;
}

.pa-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(214, 179, 94, .15), transparent);
  border-radius: 20px;
  filter: blur(40px);
}

.pa-image {
  position: relative;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.pa-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pa-tagline {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
  margin-bottom: 10px;
}

.pa-title {
  font-size: 34px;
  margin: 0;
}

@media(min-width:768px) {
  .pa-title {
    font-size: 40px
  }
}

.pa-subtitle {
  font-size: 18px;
  color: #f0d48a;
  margin-top: 8px;
}

.pa-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(233, 237, 245, .7);
}

.pa-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.pa-metric-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .35s;
}

.pa-metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 94, .5);
  box-shadow: 0 10px 35px rgba(214, 179, 94, .15);
}

.pa-icon {
  width: 22px;
  height: 22px;
  color: #d6b35e;
  margin: auto;
  margin-bottom: 6px;
}

.pa-value {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #d6b35e, #f0d48a);
  -webkit-background-clip: text;
  color: transparent;
  margin: 4px 0;
}

.pa-label {
  font-size: 12px;
  color: rgba(233, 237, 245, .7);
}



.pvx-section {
  padding: 90px 20px;
  background: #07080b;
  color: #e9edf5;
  font-family: Arial, Helvetica, sans-serif;
}

.pvx-wrap {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pvx-head {
  text-align: center;
}

.pvx-tag {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #d6b35e;
  margin-bottom: 10px;
}

.pvx-title {
  font-size: 38px;
  margin: 0;
}

.pvx-text {
  font-size: 16px;
  color: rgba(233, 237, 245, 0.7);
  max-width: 620px;
  margin: auto;
  margin-top: 12px;
  line-height: 1.6;
}

.pvx-formbox {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  backdrop-filter: blur(10px);
}

.pvx-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:768px) {
  .pvx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pvx-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pvx-label {
  font-size: 13px;
  color: rgba(233, 237, 245, 0.6);
}

.pvx-input,
.pvx-select,
.pvx-area {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #e9edf5;
  font-size: 14px;
  outline: none;
  transition: all .3s;
}

.pvx-input::placeholder,
.pvx-area::placeholder {
  color: rgba(233, 237, 245, 0.4);
}

.pvx-input:focus,
.pvx-select:focus,
.pvx-area:focus {
  border-color: #d6b35e;
}

.pvx-area {
  resize: none;
}

.pvx-submit {
  margin-top: 10px;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #d6b35e, #f1d28c);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.pvx-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(214, 179, 94, 0.35);
}


.ftz-footer {
  background: #07080b;
  padding: 70px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9edf5;
  font-family: Arial, Helvetica, sans-serif;
}

.ftz-container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ftz-top {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
}

@media(min-width:768px) {
  .ftz-top {
    flex-direction: row;
  }
}

.ftz-brand {
  text-align: center;
}

@media(min-width:768px) {
  .ftz-brand {
    text-align: left;
  }
}

.ftz-logo {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(90deg, #d6b35e, #f1d28c);
  -webkit-background-clip: text;
  color: transparent;
}

.ftz-tagline {
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(233, 237, 245, 0.6);
  margin-top: 6px;
}

.ftz-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ftz-link {
  font-size: 14px;
  color: rgba(233, 237, 245, 0.65);
  text-decoration: none;
  transition: .3s;
}

.ftz-link:hover {
  color: #ffffff;
}

.ftz-btn {
  padding: 10px 18px;
  border-radius: 6px;
  background: linear-gradient(90deg, #d6b35e, #f1d28c);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.ftz-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(214, 179, 94, 0.35);
}

.ftz-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6b35e, transparent);
}

.ftz-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(233, 237, 245, 0.45);
}


.grid4 {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr)!important;
}

.zix-section{
padding:90px 20px;
background:#07080b;
color:#e9edf5;
position:relative;
overflow:hidden;
font-family:Arial, Helvetica, sans-serif;
}

.zix-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(214,179,94,0.08), transparent);
}

.zix-container{
position:relative;
max-width:1150px;
margin:auto;
display:flex;
flex-direction:column;
gap:60px;
}

.zix-header{
text-align:center;
}

.zix-subtitle{
font-size:12px;
letter-spacing:.3em;
text-transform:uppercase;
color:#d6b35e;
margin-bottom:10px;
}

.zix-title{
font-size:38px;
margin:0;
}

.zix-grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

@media(min-width:768px){
.zix-grid{
grid-template-columns:repeat(2,1fr);
}
}

.zix-card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.12);
border-radius:14px;
padding:35px;
display:flex;
flex-direction:column;
gap:12px;
cursor:pointer;
transition:all .4s;
backdrop-filter:blur(8px);
}

.zix-card:hover{
transform:translateY(-6px);
border-color:#d6b35e;
box-shadow:0 15px 40px rgba(214,179,94,0.15);
}

.zix-category{
font-size:11px;
letter-spacing:.2em;
text-transform:uppercase;
color:#d6b35e;
}

.zix-heading{
font-size:20px;
font-weight:600;
margin:0;
transition:.3s;
}

.zix-card:hover .zix-heading{
color:#f1d28c;
}

.zix-text{
font-size:14px;
line-height:1.6;
color:rgba(233,237,245,0.7);
}

.zix-read{
display:flex;
align-items:center;
gap:8px;
color:#d6b35e;
font-size:14px;
font-weight:500;
padding-top:8px;
transition:.3s;
}

.zix-card:hover .zix-read{
gap:12px;
}

.zix-icon{
width:16px;
height:16px;
stroke:#d6b35e;
}

.trx-section{
padding:90px 20px;
background:#07080b;
color:#e9edf5;
font-family:Arial, Helvetica, sans-serif;
}

.trx-container{
max-width:1150px;
margin:auto;
display:flex;
flex-direction:column;
gap:60px;
}

.trx-header{
text-align:center;
}

.trx-subtitle{
font-size:12px;
letter-spacing:.3em;
text-transform:uppercase;
color:#d6b35e;
margin-bottom:10px;
}

.trx-title{
font-size:38px;
margin:0;
}

.trx-grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

@media(min-width:768px){
.trx-grid{
grid-template-columns:repeat(3,1fr);
}
}

.trx-card{
position:relative;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.12);
border-radius:14px;
padding:35px;
display:flex;
flex-direction:column;
gap:18px;
transition:.4s;
backdrop-filter:blur(8px);
}

.trx-card:hover{
transform:translateY(-8px);
border-color:#d6b35e;
box-shadow:0 15px 40px rgba(214,179,94,0.15);
}

.trx-topline{
position:absolute;
top:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(90deg,#d6b35e,#f1d28c);
opacity:0;
transition:.3s;
}

.trx-card:hover .trx-topline{
opacity:1;
}

.trx-heading{
font-size:18px;
font-weight:600;
background:linear-gradient(90deg,#d6b35e,#f1d28c);
-webkit-background-clip:text;
color:transparent;
}

.trx-block{
display:flex;
flex-direction:column;
gap:4px;
}

.trx-label{
font-size:11px;
letter-spacing:.2em;
text-transform:uppercase;
color:#d6b35e;
}

.trx-text{
font-size:14px;
line-height:1.6;
color:rgba(233,237,245,0.7);
}

.trx-outcome{
background:rgba(255,255,255,0.05);
border-left:3px solid #d6b35e;
border-radius:8px;
padding:14px;
}

.trx-outcome .trx-text{
color:#e9edf5;
font-weight:500;
}

.wqx-section{
padding:90px 20px;
background:#07080b;
color:#e9edf5;
position:relative;
overflow:hidden;
font-family:Arial, Helvetica, sans-serif;
}

.wqx-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to bottom, rgba(214,179,94,0.08), transparent);
}

.wqx-container{
position:relative;
max-width:850px;
margin:auto;
display:flex;
flex-direction:column;
gap:50px;
text-align:center;
}

.wqx-header{
display:flex;
flex-direction:column;
gap:10px;
}

.wqx-tag{
font-size:12px;
letter-spacing:.3em;
text-transform:uppercase;
color:#d6b35e;
}

.wqx-title{
font-size:36px;
margin:0;
}

.wqx-grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
}

@media(min-width:768px){
.wqx-grid{
grid-template-columns:repeat(2,1fr);
}
}

.wqx-card{
background:rgba(255,255,255,0.05);
border-radius:14px;
padding:35px;
display:flex;
flex-direction:column;
gap:18px;
border-top:3px solid #d6b35e;
border-left:1px solid rgba(255,255,255,0.1);
border-right:1px solid rgba(255,255,255,0.1);
border-bottom:1px solid rgba(255,255,255,0.1);
backdrop-filter:blur(8px);
}

.wqx-card.alt{
border-top:3px solid rgba(255,255,255,0.25);
}

.wqx-card-title{
font-size:18px;
font-weight:600;
background:linear-gradient(90deg,#d6b35e,#f1d28c);
-webkit-background-clip:text;
color:transparent;
}

.wqx-card.alt .wqx-card-title{
background:none;
color:rgba(233,237,245,0.6);
}

.wqx-list{
list-style:none;
padding:0;
margin:0;
display:flex;
flex-direction:column;
gap:14px;
text-align:left;
}

.wqx-item{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
}

.wqx-icon{
width:18px;
height:18px;
stroke:#d6b35e;
}

.wqx-card.alt .wqx-icon{
stroke:rgba(233,237,245,0.4);
}

.wqx-note{
font-size:16px;
color:rgba(233,237,245,0.65);
max-width:620px;
margin:auto;
font-style:italic;
}
