/* ========== Root & Reset ========== */
:root {
  --primary: #2563eb;
  --primary-dark: #04288a;
  --primary-light: #eff3fd;
  --grey: #4a4f55;

  --box-shadow: 0 0 4px rgba(46, 64, 181, 0.25);

  --bg: #ffffff;
  --text: #222;
  --subtext: #555;
  --border: #e0e0e0;
  --input-bg: #f9f9f9;
  --black: #000;
  --white: #fff;
}

html.dark,
body.dark {
  --bg: #1e1e1e;
  --text: #f2f2f2;
  --subtext: #bdbdbd;
  --border: #333;
  --input-bg: #2a2a2a;
  --box-shadow: 0 0 12px rgba(8, 6, 78, 0.08);
  --primary-light: #eff3fd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
}

/* ========= Global Reset ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

.pt {
  padding: 6rem 0 !important;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}

.form-check-input:focus {
  background-color: transparent;
  border-color: var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.form-control,
.form-select {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: 0.2s ease;
  color: var(--text) !important;
}

.form-control:focus,
.form-select:focus,
.form-date:focus {
  background-color: var(--input-bg);
  border-color: var(--primary);
  box-shadow: var(--box-shadow);
  color: var(--text);
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary-light {
  color: var(--primary-light) !important;
}

.bg-secondary {
  background-color: var(--primary-light) !important;
}

.bg {
  background-color: var(--bg) !important;
}
.input-bg {
  background-color: var(--input-bg) !important;
}

.btn {
  padding: 0.9rem 1.7rem;
  border-radius: 5px;
}

.create-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.7rem;
  border-radius: 5px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}
.create-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

@media screen and (max-width: 991px) {
  .create-btn {
    min-width: 250px;
    font-size: 16px;
  }

  .btn {
    min-width: 180px;
    font-size: 16px;
  }

  .back-btn {
    min-width: 0px;
    width: 0;
  }

  .theme-toggle-btn {
    min-width: 0px;
    width: 0;
  }
}

@media screen and (max-width: 767px) {
  .create-btn {
    padding: 16px 16px;
    width: 100%;
  }

  .pt {
    padding: 2rem 0 !important;
  }

  .btn {
    padding: 16px 16px;
    width: 100%;
  }

  .back-btn {
    min-width: 0px;
    width: 0;
  }
  .theme-toggle-btn {
    min-width: 0px;
    width: 0;
  }
}

/* Reset browser default styling */
input[type='date'],
input[type='time'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--input-bg) !important;
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.bg-light {
  background-color: var(--input-bg) !important;
}

.input-group-text {
  background-color: var(--input-bg);
  color: var(--text);
  border-color: var(--border);
}

/* Optional: placeholder style */
input[type='date']::placeholder,
input[type='time']::placeholder {
  color: var(--text);
}

.form-control::placeholder {
  color: var(--text);
}

.form-check-input {
  width: 1.1em;
  height: 1.1em;
}

/* Focus style */
input[type='date']:focus,
input[type='time']:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: var(--box-shadow);
}

/* Remove link styles */
a {
  text-decoration: none !important;
  outline: none !important;
  color: inherit;
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: inherit;
}

/* Buttons reset */
button {
  outline: none !important;
  box-shadow: none !important;
  border: none;
  background: transparent;
}

button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Input and textarea reset */
input,
textarea,
select {
  outline: none !important;
  box-shadow: none !important;
  border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary);
}

/* List reset */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Headings and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.no-scroll {
  overflow: hidden;
}

.page-wrapper {
  min-height: 750px;
}
.button.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hero buttons */
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.btn-outline-primary {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  color: var(--text) !important;
}

.btn-outline-primary:hover {
  background: none;
  color: var(--text) !important;
}

.btn-outline-white {
  border: 1px solid #fff !important;
  color: var(--text) !important;
}

.btn-outline-white:hover {
  background: none;
  color: var(--text) !important;
}

/* Remove focus ring globally for non-keyboard navigation */
:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mt-2 {
  margin-top: 2rem;
}

/* Theme toggle button */
.theme-toggle-btn {
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

/* NAV */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 80px;
}
.brand img {
  height: 42px;
}

/* center nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle-btn {
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}
.create-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1.7rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* Mobile toggle (hidden on desktop) */
.mobile-toggle {
  display: none;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
}
/* Mobile toggle (hidden on desktop) */
.mobile-toggle i {
  color: var(--text);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: var(--bg);
  padding: 40px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 999;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.mobile-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: transparent;
  border-radius: 6px;
  padding: 8px;
  color: var(--text);
}
.mobile-book {
  display: block;
  margin-top: 24px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .arch-bg {
    width: 320px;
    height: 380px;
    margin: 0 auto;
    border-radius: 180px;
  }
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .nav-wrap {
    height: 64px;
  }
  .brand img {
    height: 36px;
  }
  .hero-title {
    font-size: 28px;
  }
  .arch-bg {
    display: none;
  }
  .arch img {
    max-width: 100%;
    width: 100%;
  }
}

/* small utility */
.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
}
.section-subtitle {
  color: var(--subtext);
  margin-top: 6px;
}

/* ---------------------- */
/* Footer Section           */
/* ---------------------- */

.footer-section {
  background: var(--input-bg);
  color: var(--text);
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 150.14px;
  height: auto;
  margin-left: -10px;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: none;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer-divider {
  margin: 2rem 0 1rem;
  border-top: 1px solid var(--subtext);
}

.footer-copy {
  color: var(--subtext);
  font-size: 0.9rem;
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding: 7rem 0 5rem;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(120, 125, 200, 0.25),
      transparent 60%
    ),
    linear-gradient(
      to right,
      rgba(120, 174, 255, 0.12),
      rgba(120, 174, 255, 0.12)
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    40px 40px,
    40px 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.45rem 1rem;
  border: 1px solid var(--primary-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hero-content h1 {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.06em;
  margin-bottom: 2rem;
}

.hero-content p {
  max-width: 660px;
  color: var(--subtext);
  font-size: 1.21rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-btn {
  background: linear-gradient(135deg, var(--primary), #4f7cff);
  color: var(--white) !important;
  min-width: 170px;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 18px 45px var(--box-shadow);
}

.hero-btn:hover {
  background: var(--white);
  color: var(--primary) !important;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-visual {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-eyebrow {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.65rem;
    line-height: 1.12;
    margin-bottom: 1.4rem;
  }

  .hero-content p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .hero-btn {
    width: auto;
    min-width: 170px;
  }
}

/* ================= WHY CHOOSE US SECTION ================= */

.why-section {
  background: var(--bg);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.why-card {
  width: 100%;
  padding: 24px 24px 32px;
  border-radius: 24px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 var(--box-shadow),
    0 20px 50px var(--box-shadow);
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-1px);
  border-color: var(--border);
  box-shadow:
    inset 0 1px 0 var(--box-shadow),
    0 28px 70px var(--box-shadow);
}

.why-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--bg);
  color: var(--primary);
  font-size: 2rem;
  box-shadow:
    inset 0 2px 8px var(--border),
    0 18px 40px var(--box-shadow);
}

.why-card h3 {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.why-card p {
  color: var(--subtext);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ================= WHY RESPONSIVE ================= */

@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 2.4rem 1.5rem;
  }

  .why-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 1.8rem;
    font-size: 1.7rem;
  }

  .why-card h3 {
    font-size: 1.15rem;
  }
}

/* ================= ANALYSIS SECTION ================= */

.analysis-section {
  background: var(--input-bg);
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.analysis-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.analysis-card h3 {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.analysis-market-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.analysis-content-card h3 {
  color: var(--primary);
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.analysis-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}

.analysis-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.analysis-item h4 {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.analysis-item h4 span {
  color: var(--primary);
}

.analysis-item p {
  color: var(--subtext);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* ================= ANALYSIS RESPONSIVE ================= */

@media (max-width: 991px) {
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-card {
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .analysis-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .analysis-icon {
    margin: 0 auto;
  }

  .analysis-btn {
    width: 100%;
  }
}

/* ================= HOW IT WORKS ================= */

.how-section {
  background: var(--bg);
}

.how-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 3rem;
  align-items: stretch;
}

.how-image {
  height: 100%;
}

.how-image img {
  height: 100%;
  background-color: var(--black);
  mix-blend-mode: hard-light;

  overflow: hidden;
  border: 1px solid var(--border);
}

.fit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 10px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step-number {
  flex-shrink: 0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--subtext);
}

.step-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
}

.step-content p {
  margin: 0;
  color: var(--subtext);
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-image img {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .how-step {
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-number {
    font-size: 3rem;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .how-image img {
    min-height: 400px;
  }
}

/* ================= CRYPTO SECTION ================= */

.crypto-section {
  position: relative;
  overflow: hidden;
  background: var(--input-bg);
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.crypto-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.crypto-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.crypto-name {
  color: var(--text);
  font-size: 0.95rem;
}

.crypto-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
}

.bitcoin {
  background: #f7931a;
}

.ethereum {
  background: #627eea;
}

.usdt {
  background: #26a17b;
}

.bnb {
  background: #f3ba2f;
}

.xrp {
  background: #3c3c3d;
}

.usdc {
  background: #2775ca;
}

.sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
}

.trx {
  background: #ff060a;
}

.crypto-bottom h3 {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.crypto-bottom p {
  color: var(--subtext);
  font-weight: 600;
}

.crypto-up {
  color: #00d26a;
}

.crypto-down {
  color: #ff4d4f;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
  .crypto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .crypto-grid {
    grid-template-columns: 1fr;
  }

  .crypto-card {
    padding: 1.25rem;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonial-section {
  overflow: hidden;
  background: var(--bg);
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonialScroll 35s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 420px;
  background: linear-gradient(180deg, var(--input-bg) 0%, var(--input-bg) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  flex-shrink: 0;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.testimonial-user span {
  color: var(--subtext);
  font-size: 0.85rem;
}

.testimonial-card p {
  color: var(--subtext);
  line-height: 1.8;
  min-height: 110px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #ffc83d;
  display: flex;
  gap: 0.25rem;
}

.quote {
  color: var(--primary-dark);
  font-size: 2rem;
}

/* Mobile */

@media (max-width: 767px) {
  .testimonial-card {
    width: 320px;
  }

  .testimonial-card p {
    min-height: auto;
  }
}

/* ================= POWERING SECTION ================= */

.powering-section {
  background: var(--input-bg);
  overflow: hidden;
}

.powering-wrapper {
  text-align: center;
  position: relative;
}

.powering-highlight {
  position: relative;
  z-index: 2;
}

.powering-highlight h3 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  text-shadow:
    0 0 20px rgba(8, 69, 239, 0.4),
    0 0 50px rgba(8, 69, 239, 0.25);
}

.powering-badge {
  display: inline-block;
  margin-top: -0.5rem;
  padding: 0.45rem 1rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transform: rotate(4deg);
  box-shadow: 0 10px 30px var(--shadow);
}

.powering-image {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.powering-image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
  -webkit-animation: globe-rotate-3d 22s linear infinite;
  animation: globe-rotate-3d 22s linear infinite;
}

.powering-stats {
  display: flex;
  justify-content: center;
  gap: 6rem;

  margin-top: -1rem;

  z-index: 2;

  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(hsl(var(--black)))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    hsl(var(--black)) 100%
  );
  padding-block: 50px;
}

.powering-stat h4 {
  margin-bottom: 0.5rem;

  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;

  color: var(--text);
}

.powering-stat h4::after {
  content: '+';
  color: var(--primary);
}

.powering-stat span {
  color: var(--subtext);
  font-weight: 600;
}

@-webkit-keyframes globe-rotate-3d {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(0deg) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(0deg) skew(0deg, 0deg);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(360deg) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(360deg) skew(0deg, 0deg);
  }
}

@keyframes globe-rotate-3d {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(0deg) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(0deg) skew(0deg, 0deg);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(360deg) skew(0deg, 0deg);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(6deg)
      rotateY(-6deg) rotateZ(360deg) skew(0deg, 0deg);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .powering-stats {
    gap: 2rem;
  }

  .powering-image img {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .powering-highlight h3 {
    font-size: 4rem;
  }

  .powering-badge {
    transform: rotate(4deg);
    font-size: 0.8rem;
  }

  .powering-stats {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .powering-image img {
    max-width: 100%;
  }

  .powering-stat h4 {
    font-size: 2.5rem;
  }
}

/* ================= FAQ SECTION ================= */

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-intro {
  min-height: 430px;
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--input-bg) 0%, var(--input-bg) 100%);
  border: 1px solid var(--border);
}

.faq-intro h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.faq-intro p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.faq-help {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-help span {
  color: var(--text);
  font-weight: 600;
}

.faq-help a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 10px;
  background: linear-gradient(180deg, var(--input-bg) 0%, var(--input-bg) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 800;
}

.faq-question i {
  color: var(--subtext);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--subtext);
  line-height: 1.7;
  max-width: 760px;
}

/* ================= FAQ RESPONSIVE ================= */

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    min-height: auto;
  }

  .faq-help {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .faq-intro h2 {
    font-size: 1.7rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* ================= BLOG SECTION ================= */

.blog-section {
  background: var(--input-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.blog-image {
  display: block;
  height: 210px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 1.25rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
}

.blog-content h3 a {
  color: inherit;
}

.blog-content p {
  margin-bottom: 1rem;
  color: var(--subtext);
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.blog-meta span {
  color: var(--text) !important;
  font-size: 0.85rem;
}

.blog-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ================= BLOG RESPONSIVE ================= */

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 220px;
  }

  .blog-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==================================================
   MARKET SECTION
================================================== */

.market-section {
  background: var(--bg);
}

/* ==================================================
   TOP BAR
================================================== */

.market-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ==================================================
   FILTERS
================================================== */

.market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.market-filter {
  min-width: 200px;
  padding: 1.25rem;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: var(--input-bg);

  text-align: left;

  transition: all 0.3s ease;
}

.market-filter:hover,
.market-filter.active {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.market-filter span {
  display: block;

  color: var(--text);

  font-size: 1rem;
  font-weight: 700;

  margin-bottom: 0.35rem;
}

.market-filter small {
  color: var(--subtext);
  font-size: 0.85rem;
}

/* ==================================================
   SEARCH
================================================== */

.market-search {
  width: 320px;
  position: relative;
  flex-shrink: 0;
}

.market-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--subtext);
}

.market-search input {
  width: 100%;
  height: 56px;

  padding-left: 48px;
  padding-right: 16px;

  background: var(--input-bg);

  border: 1px solid var(--border);
  border-radius: 12px;

  color: var(--text);

  outline: none;

  transition: 0.3s ease;
}

.market-search input:focus {
  border-color: var(--primary);
}

.market-search input::placeholder {
  color: var(--text);
}

/* ==================================================
   TABLE WRAPPER
================================================== */

.market-table-wrapper {
  overflow-x: auto;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: var(--input-bg);
}

/* ==================================================
   TABLE
================================================== */

.market-table {
  width: 100%;
  min-width: 900px;

  border-collapse: collapse;
}

.market-table thead th {
  padding: 1.25rem;

  color: var(--subtext);

  font-size: 0.9rem;
  font-weight: 600;

  white-space: nowrap;

  border-bottom: 1px solid var(--border);
}

.market-table tbody td {
  padding: 1.25rem;

  color: var(--text);

  font-weight: 600;

  border-bottom: 1px solid var(--border);

  vertical-align: middle;
}

.market-table tbody tr:last-child td {
  border-bottom: 0;
}

.market-table tbody tr {
  transition: background 0.3s ease;
}

/* ==================================================
   ASSET INFO
================================================== */

.market-asset {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.market-asset img {
  width: 42px;
  height: 42px;

  border-radius: 50%;
  object-fit: cover;
}

.market-asset strong {
  display: block;

  color: var(--text);
  font-size: 0.95rem;
}

.market-asset small {
  display: block;

  color: var(--text);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ==================================================
   MARKET COLORS
================================================== */

.positive {
  color: #00d26a;
}

.negative {
  color: #ff4d4f;
}

/* ==================================================
   ACTION BUTTON
================================================== */

.market-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 90px;
  height: 40px;

  padding: 0 1rem;

  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--text);

  font-size: 0.85rem;
  font-weight: 600;

  transition: 0.3s ease;
}

.market-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ==================================================
   TABLE SCROLLBAR
================================================== */

.market-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.market-table-wrapper::-webkit-scrollbar-track {
  background: #111;
}

.market-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .market-top {
    flex-direction: column;
  }

  .market-search {
    width: 100%;
  }

  .market-filters {
    width: 100%;
  }

  .market-filter {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: auto;
  }
}

@media (max-width: 767px) {
  .market-filter {
    flex: 1 1 100%;
  }

  .market-table thead th,
  .market-table tbody td {
    padding: 1rem;
  }

  .market-asset {
    gap: 0.75rem;
  }

  .market-asset img {
    width: 36px;
    height: 36px;
  }

  .market-btn {
    min-width: 75px;
    height: 36px;
    font-size: 0.8rem;
  }
}

/* ================= MARKET HIGHLIGHT SECTION ================= */

.market-highlight-section {
  background: var(--bg);
}

.market-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.market-highlight-card {
  padding: 1.75rem;
  border-radius: 20px;
  background: var(--input-bg);
  border: 1px solid var(--border);
}

.highlight-card-title {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.highlight-asset {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.highlight-asset img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.highlight-asset span,
.highlight-item strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.highlight-item .positive,
.highlight-item .negative {
  font-size: 0.95rem;
  font-weight: 700;
}

.positive {
  color: #00d26a !important;
}

.negative {
  color: #ff4d4f !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .market-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .market-highlight-card {
    padding: 1.35rem;
  }

  .highlight-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ================= CTA SECTION ================= */

.cta-section {
  padding-bottom: 6rem;
}

.cta-box {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 3.8rem;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 5px solid
    color-mix(in srgb, var(--primary-dark) 60%, transparent);
  transition: transform 0.3s ease;
}

.cta-box:hover {
  animation: shake-dangle 0.8s ease-in-out;
  transform: rotate(-0.8deg);
}

/* Shake + dangle animation */
@keyframes shake-dangle {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  25% {
    transform: rotate(-1.5deg) translateX(-1px);
  }
  50% {
    transform: rotate(1.5deg) translateX(1px);
  }
  75% {
    transform: rotate(-1deg) translateX(-0.5px);
  }
  100% {
    transform: rotate(-0.9deg) translateX(0);
  }
}

/* Text */
.cta-box h1 {
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 2.4rem;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 2.8rem;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Button */
.cta-box .btn-light {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  padding: 12px 52px;
  border-radius: 5px;
}

/* Mobile */
@media (max-width: 767px) {
  .cta-box {
    padding: 3rem 1.5rem;
  }

  .cta-box h1 {
    font-size: 2.2rem;
  }

  .cta-box p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
  }

  .hero-badge {
    padding: 0.35rem 0.7rem;

    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-dark);
    letter-spacing: 0.4px;
  }
}

/* ================= Section Text ================= */
.section-hero {
  padding: 6rem 1rem 4rem;
  background: var(--input-bg);
  color: var(--text);
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
}

.section-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.45rem 1rem;
  border: 1px solid var(--primary-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-hero h1 {
  font-weight: 800;
  margin: 1rem 0;
  color: var(--primary);
}

.section-hero h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-hero p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--text);
}

.privacy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--input-bg);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--text);
  border: 1px solid var(--border);
}

.privacy-card h4,
.privacy-card h5 {
  font-weight: 700;
  margin-top: 1.5rem;
  color: var(--text);
}

.privacy-card p,
.privacy-card li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.privacy-card ul {
  padding-left: 1.2rem;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  background: var(bg);
  color: var(--text);
}

/* Info Card */
.contact-info-card {
  background: var(--bg);
  border-radius: 5px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--primary-dark) 20%, transparent);
}

.contact-info-card h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-item span {
  font-size: 0.8rem;
  color: var(--subtext);
}

.contact-info-item p {
  margin: 0;
  font-weight: 500;
}

.contact-info-footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--subtext);
}

/* Form Card */
.contact-form-card {
  background: var(--bg);
  border-radius: 5px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--primary-dark) 20%, transparent);
}

.contact-form-card .form-control {
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 6px;
  padding: 12px 14px;
}

.contact-form-card .form-control::placeholder {
  color: var(--text);
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

/* Button */
.contact-btn {
  background: var(--primary);
  color: #fff;
  padding: 16px 26px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  width: 100%;
  margin-top: 10px;
}

.contact-btn:hover,
.contact-btn:active {
  opacity: 0.9;
  background: var(--primary) !important;
  color: #fff !important;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
}

/* ==================================================
   SECTION SPACING
================================================== */

.section-space {
  padding: 6rem 0;
}

.section-space-sm {
  padding: 4rem 0;
}

.section-space-lg {
  padding: 8rem 0;
}

/* ==================================================
   GLOBAL SECTION HEADER
================================================== */

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.45rem 1rem;
  border: 1px solid var(--primary-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-description {
  max-width: 720px;
  color: var(--subtext);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-header.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 4rem 0;
  }

  .section-space-sm {
    padding: 3rem 0;
  }

  .section-space-lg {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .section-eyebrow {
    font-size: 0.8rem;
  }
}
