* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ffd000;
  --primary-dark: #d9af00;
  --secondary: #0f0f0f;
  --black: #050505;
  --card: #171717;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --gray: #bbbbbb;
  --green: #25d366;
  --telegram: #229ed9;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --transition: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #050505;
  color: #fff;
  /* overflow-x: hidden; */
  /* position: relative; */
}

/*==========================
Scrollbar
==========================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #101010;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 50px;
}

/*==========================
Canvas
==========================*/

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/*==========================
Cursor Glow
==========================*/

.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: 0.08s linear;
}

/*==========================
Container
==========================*/

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/*==========================
Typography
==========================*/

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

h1 {
  font-size: 5.5rem;
  line-height: 1;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.7rem;
}

p {
  color: var(--gray);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/*==========================
Section
==========================*/

.section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 3px;
}

.section-title h2 {
  margin-top: 10px;
  margin-bottom: 15px;
}

/*==========================
Loader
==========================*/

#loader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader img {
  width: 180px;
  animation: zoomLogo 1.5s infinite alternate;
}

.loader-ring {
  margin-top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--primary);
  animation: spin 1s linear infinite;
}

/*==========================
Navbar
==========================*/

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrapper {
  height: 90px;
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 170px;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

nav a {
  color: #fff;
  transition: 0.3s;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/*==========================
Hero
==========================*/

#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--primary);
  margin: 25px 0;
}

.hero-content {
  padding-top: 120px;
}
.hero-content h1 {
  margin-bottom: 25px;
}

.hero-content p {
  color: var(--primary);
}

.hero-content p {
  max-width: 580px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/*==========================
Buttons
==========================*/

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn {
  padding: 16px 30px;
  border-radius: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-6px);
}

.whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.telegram {
  background: var(--telegram);
  color: #fff;
  box-shadow: 0 15px 40px rgba(34, 158, 217, 0.25);
}

/*==========================
Hero Stats
==========================*/

.hero-stats {
  display: flex;
  gap: 45px;
}

.hero-stats h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.hero-stats span {
  color: #ddd;
}

/*==========================
Hero Image
==========================*/

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.25), transparent 70%);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*==========================
Scroll Indicator
==========================*/

.hero-scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  animation: bounce 2s infinite;
}

.hero-scroll i {
  color: var(--primary);
}

/*======================================  PART 2  TRUST STRIP  STEPS  PLATFORMS
=======================================*/

/*==========================
Dark Background Sections
==========================*/

.dark-section {
  background: #0a0a0a;
  position: relative;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 208, 0, 0.04),
    transparent 40%
  );
  pointer-events: none;
}

/*==========================
Trust Strip
==========================*/

.trust-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 55px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  padding: 35px 20px;
  transition: 0.35s;
  cursor: pointer;
}

.trust-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 208, 0, 0.35);
  box-shadow: 0 20px 50px rgba(255, 208, 0, 0.08);
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

/*==========================
How It Works
==========================*/

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.step-card {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.08), transparent 70%);
  top: -120px;
  right: -120px;
  transition: 0.5s;
}

.step-card:hover::before {
  transform: scale(1.5);
}

.step-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 208, 0, 0.25);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3rem;
  /* font-family: "Bebas Neue"; */
}

.step-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 208, 0, 0.08);
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.step-card h3 {
  margin-bottom: 15px;
}

.step-card p {
  font-size: 0.95rem;
}

.step-arrow {
  color: var(--primary);
  font-size: 1.6rem;
}

/*==========================
Platforms
==========================*/

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.platform-card {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  cursor: pointer;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.09), transparent 70%);
  top: -180px;
  left: -180px;
  transition: 0.5s;
}

.platform-card:hover::before {
  transform: scale(1.8);
}

.platform-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 208, 0, 0.25);
  box-shadow: 0 25px 60px rgba(255, 208, 0, 0.08);
}

.platform-card img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
  transition: 0.35s;
}

.platform-card:hover img {
  transform: scale(1.08);
}

.platform-card span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.view-more {
  color: var(--primary);
}

.view-more i {
  font-size: 3rem;
  margin-bottom: 18px;
}

/*==========================
Hover Glow
==========================*/

.platform-card:hover,
.step-card:hover,
.trust-item:hover {
  background: linear-gradient(180deg, #1a1a1a, #131313);
}

/*==========================
Section Background Glow
==========================*/

.section {
  position: relative;
  overflow: hidden;
}

.section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.03), transparent 70%);
  bottom: -450px;
  left: -300px;
  pointer-events: none;
}
/*======================================
    PART 3
    FEATURES
    CTA
    FOOTER
=======================================*/

/*==========================
Why Choose Us
==========================*/

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 45px 35px;
  text-align: center;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 208, 0, 0.08), transparent 55%);
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 208, 0, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.feature-card i {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.08);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 25px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

/*==========================
CTA Section
==========================*/

.cta-section {
  padding: 120px 0;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, #ffd000, #e8b900);
  border-radius: 30px;
  overflow: hidden;
  padding: 80px;
  text-align: center;
  color: #111;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  right: -250px;
  top: -250px;
}

.cta-box h2 {
  color: #111;
  font-size: 4rem;
  margin-bottom: 20px;
}

.cta-box p {
  color: #222;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.cta-box .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}

/*==========================
Footer
==========================*/

footer {
  background: #090909;
  padding-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns:
    2fr
    1fr
    1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 25px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #ddd;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 25px;
}

.footer-bottom p {
  color: #999;
}

/*==========================
Floating Buttons
==========================*/

.floating-actions {
  position: fixed;
  right: 30px;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
}

.floating-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  transition: 0.15s;
}

.whatsapp-float {
  background: #25d366;
}

.telegram-float {
  background: #229ed9;
}

.floating-btn:hover {
  transform: translateY(-8px) scale(1.08);
}

/*==========================
Back To Top
==========================*/

#backToTop {
  position: fixed;
  left: 30px;
  bottom: 35px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/*==========================
Scroll Progress
==========================*/

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  z-index: 9999;
}

/*==========================
Mobile Bottom Bar
==========================*/

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(16px);
  padding: 14px;
  z-index: 999;
  gap: 12px;
}

.mobile-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
}

.mobile-btn.whatsapp {
  background: #25d366;
}

.mobile-btn.telegram {
  background: #229ed9;
}
/*======================================
    PART 4
    RESPONSIVE
    ANIMATIONS
=======================================*/

/*==========================
Mobile Drawer
==========================*/

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(220px, 75vw);
  height: 100vh;
  background: #111;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 100px 30px;
  overflow-y: auto;
  gap: 20px;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-drawer a:hover {
  color: var(--primary);
  padding-left: 10px;
}

/*==========================
Hover Animations
==========================*/

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: 0.45s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-6px) scale(1.02);
}

.platform-card img,
.feature-card i,
.step-icon {
  transition: 0.35s;
}

.platform-card:hover img {
  transform: scale(1.12) rotate(-3deg);
}

.feature-card:hover i {
  transform: rotateY(180deg);
}

.step-card:hover .step-icon {
  transform: scale(1.12);
}

/*==========================
Animations
==========================*/

.blink_me {
  animation: zoomLogo 0.5s infinite alternate;
}

@keyframes blinker {
  70% {
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes zoomLogo {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/*==========================
Reveal Animation
==========================*/

.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*==========================
Tablet
==========================*/

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 30px;
  }
  .hero-content p {
    margin: 0 auto 10px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image {
    max-width: 650px;
    margin: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-arrow {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin: auto;
  }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
    overflow-x: hidden;
  }

  .glow-circle {
    display: none;
  }

  .container {
    width: 92%;
  }

  .hero-content {
    padding-top: 0;
  }

  /* ---------- NAVBAR ---------- */

  header {
    height: 120px;
  }

  .nav-wrapper {
    height: 75px;
  }

  .logo img {
    width: 120px;
  }

  nav {
    display: none;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.7rem;
  }

  /* ---------- HERO ---------- */

  #hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .hero-image {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }

  .hero-wrapper {
    width: 100%;
  }

  .hero-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 25px;
    display: inline-flex;
    font-size: 0.8rem;
    padding: 10px 18px;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.95;
    margin-bottom: 5px;
  }

  .hero-content h1 span {
    display: block;
    color: #ffd000;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 320px;
    margin: 25px auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .hero-stats {
    margin-top: 35px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
  }

  .hero-stats h3 {
    font-size: 2rem;
  }

  .hero-stats span {
    font-size: 0.8rem;
  }

  .hero-scroll {
    display: none;
  }

  /* ---------- TRUST ---------- */

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .trust-item {
    padding: 20px;
  }

  /* ---------- STEPS ---------- */

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step-arrow {
    display: none;
  }

  /* ---------- FEATURES ---------- */

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ---------- CTA ---------- */

  .cta-box {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  /* ---------- FOOTER ---------- */

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  /* ---------- FLOATING ---------- */

  .floating-actions {
    display: none;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  #backToTop {
    bottom: 105px;
    left: 15px;
  }
}

/* ==========================
   SMALL PHONES
========================== */

@media (max-width: 320px) {
  .logo img {
    width: 105px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/*==========================
Smooth Transitions
==========================*/

section,
div,
a,
button {
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}

/*==========================
Selection
==========================*/

::selection {
  background: var(--primary);
  color: #111;
}

/*==========================
Focus
==========================*/

button:focus,
a:focus {
  outline: none;
}

.hero-wrapper {
  width: 100%;
  margin: auto;
}
/*==========================
End
==========================*/
