/* ══════════════════════════════════
   KWIK TRADE – Main Stylesheet
   ══════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --lime: #D6F236;
  --dark: #0d0d0d;
  --card-bg: rgba(153, 153, 153, 0.10);
  --light: #6B7280;
  --lime-light: rgba(214, 242, 54, 0.30);
  --grey: rgba(153, 153, 153, 0.05);
  --lightest: rgba(255, 255, 255, 0.80);
}

html, body {
  touch-action: pan-y;
  overflow-x: hidden;
}

input,
select,
textarea {
  font-size: 16px;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: #fff;
  color: var(--dark);
  /* overflow-x: hidden; */
}
a {
  color: var(--dark);
  text-decoration: none;
}
iframe {
  width: 100%;
}

.text-light {
  color: var(--light) !important;
}

.text-lightest {
  color: var(--lightest) !important;
}

.bg-brand {
  background-color: var(--lime) !important;
}

.bg-branddark {
  background: var(--dark) !important;
}

.bg-grey {
  background-color: var(--grey) !important;
}

.text-brand {
  color: var(--lime);
}

h1,
h2,
h3,
.brand-name {
  font-family: 'Satoshi', sans-serif;
}

/* ══════════════════════════════════
   REUSABLE HOVER UTILITIES
   ══════════════════════════════════ */

/* Border-only hover: dark border + subtle shadow */
.card-border-hover {
  border: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.card-border-hover:hover {
  border-color: var(--dark);
}

.card-border-hover:hover .feature-icon-wrap {
  background: var(--lime);
}

/* Background hover: full dark fill with child text transitions */
.card-bg-hover {
  border: 1.5px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.card-bg-hover:hover {
  background: var(--dark) !important;
  border-color: var(--dark);
}

.card-bg-hover:hover .market-mini-tag {
  color: var(--lime);
  border: 1px solid rgba(214, 242, 54, 0.30);
  background: rgba(214, 242, 54, 0.3);
}

.card-bg-hover:hover .market-card-title,
.card-bg-hover:hover .feature-title,
.card-bg-hover:hover .step-card-title {
  color: #fff;
}

.card-bg-hover:hover .market-card-desc,
.card-bg-hover:hover .feature-desc,
.card-bg-hover:hover .step-card-desc {
  color: #A0A4AC;
}

/* ── Navbar ── */
.navbar {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-link {
  font-size: 0.875rem;
  padding: 8px 17px !important;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: normal;
  border-radius: 50px;
}

.nav-link.active-pill,
.nav-link:hover {
  background: var(--lime);
  color: #0D0D0D !important;
}

.btn-open-account {
  background: var(--dark);
  color: var(--lime);
  border-radius: 50px;
  padding: 11px 11px;
  font-size: 0.875rem;
  border: none;
  white-space: nowrap;
  color: #D6F236;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  display: inline-flex;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #2c2c2c;
}

.btn-open-account::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-open-account:hover:after {
    transform: scale(4);
}
.btn-open-account.bg-brand {
  border-color: transparent;
}

.btn-open-account.bg-brand:hover svg path {
  fill: var(--lime);
}

.btn-open-account:hover {
  border-color: #666666;
  color: #0D0D0D;
  background: #ffffff;
}

.btn-open-account.bg-brand:hover {
  border-color: #666666;
  background: var(--dark) !important;
  color: var(--lime) !important;
}

.btn-open-account.bg-brand:hover::after {
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
}

.btn-transparent {
  color: var(--light);
  border-radius: 50px;
  padding: 10px 16px;
  border: 1px solid transparent;
  transition: border 0.2s ease, transform 0.2s ease;
   position: relative;
    overflow: hidden;
}

.btn-transparent::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-transparent:hover:after {
    transform: scale(4);
}


.btn-transparent:hover {
     color: var(--dark);
    border-color: #666666;
    background: var(--lime);
}

/* ── Hero ── */
.hero-section {
  /* min-height: 82vh; */
  padding-top: 130px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 130px;
}

.pb-200 {
  padding-bottom: 210px;
}

.live-badge {
  background: var(--lime-light);
  border-radius: 20px;
  border: 1px solid rgba(214, 242, 54, 0.30);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.36px;
  gap: 10px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--dark);
  font-weight: 500;
  line-height: 77.504px;
  letter-spacing: -1.92px;
}

.hero-subtitle {
  line-height: 1.6;
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.22px;
  letter-spacing: -0.6px;
  margin-bottom: 36px;
}

.input-group-hero {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.input-group-hero input {
  border-radius: 32px;
  border: 0.04px solid #0D0D0D;
  background: #FFF;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 265px;

}

.input-group-hero input {
  border: none;
  outline: none;
  padding: 13px 80px 13px 20px;
  font-size: 14px;
  background: transparent;
  flex: 1;
  min-width: 0;
}

.input-group-hero input::placeholder {
  color: #1E1E1E;
  opacity: 0.4;
}

.btn-start {
  background: var(--dark);
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  padding: 8px 17px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
        border: 2px solid #2c2c2c;
}

.btn-start::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-start:hover:after {
    transform: scale(4);
}

.btn-start:hover {
    border-color: #666666;
    color: #0D0D0D;
    background: #ffffff;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -0.96px;
  color: var(--dark);
}

.stat-label {
  color: #1E1E1E;
  font-size: 14.512px;
  font-weight: 400;
  line-height: 17.5px;
  letter-spacing: -0.435px;
}

/* ── Chart card ── */
.chart-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  padding: 18px 22px 14px;
  width: 100%;
  max-width: 340px;
}

.chart-card .ticker {
  font-size: 0.72rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-card .ticker .dot-green {
  width: 7px;
  height: 7px;
  background: #1a9c3e;
  border-radius: 50%;
}

.chart-card .gain {
  font-size: 0.72rem;
  color: #1a9c3e;
  font-weight: 600;
}

.chart-card .margin-badge {
  font-size: 0.68rem;
  background: var(--dark);
  color: #fff;
  border-radius: 50px;
  padding: 2px 8px;
}

.chart-svg {
  width: 100%;
  height: 70px;
}

.secure-badge {
  font-size: 0.72rem;
  color: #888;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Mascot ── */
.mascot-img {
  width: 190px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 2;
}

/* ══════════════════════════════════
   SHARED SECTION TAG (reusable lime pill)
   ══════════════════════════════════ */

.section-tag {
  background: var(--lime);
  border-radius: 20px;
  border: 1px solid rgba(214, 242, 54, 0.30);
  padding: 5px 14px;
  font-size: 12px;
  line-height: 14.532px;
  letter-spacing: 0.36px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  display: inline-block;
}

/* ══════════════════════════════════
   FEATURES SECTION – Why Kwik Trade
   ══════════════════════════════════ */

.features-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 48.44px;
  letter-spacing: -1px;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: -1.2px;
}

.section-subtitle {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.376px;
  letter-spacing: 0.16px;
}

.section-subtitle-2 {
  color: #6B7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.376px;
  letter-spacing: 0.16px;
}

.feature-card {
  padding: 28px;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  display: block;
    cursor: pointer;
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--lime-light);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}

.feature-icon-wrap i {
  font-size: 1.25rem;
  color: var(--dark);
}

.feature-title {
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.25s ease;
  color: #000;
  font-size: 16px;
  font-style: normal;
  line-height: 19.376px;
  letter-spacing: -0.48px;
}

.feature-desc {
  transition: color 0.25s ease;
  color: #6B7280;
  font-family: Satoshi;
  font-weight: 500;
  line-height: 16.954px;
  letter-spacing: -0.42px;
  margin: 0;
}

.app-card {
  padding: 24px 37px 24px 24px;
}

/* ══════════════════════════════════
   ZERO BROKERAGE SECTION
   ══════════════════════════════════ */

.zero-brokerage-section {
  padding: 80px 0;
  overflow: hidden;
}

.zb-checklist {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 19.376px;
  letter-spacing: 0.16px;
}

.gap-12 {
  gap: 12px;
}

.zb-check-icon {
  color: #1a9c3e;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.zb-cta-btn {
  background: var(--dark);
  color: var(--lime);
  border-radius: 50px;
  padding: 6px 25px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
   border: 2px solid #2c2c2c;
}
.zb-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.zb-cta-btn:hover:after {
    transform: scale(4);
}
.zb-cta-btn:hover {
    border-color: #666666;
  color:#0D0D0D;
  background: #ffffff;
}

.zb-mascot-img {
  width: 100%;
  max-width: 380px;
  object-fit: contain;
}

/* ══════════════════════════════════
   500X MARGIN SECTION
   ══════════════════════════════════ */

.margin-section {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.margin-stat-card {
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--card-bg);
  border-radius: 14px;
  padding: 16px;
}

.margin-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.margin-stat-label {
  color: #6B7280;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.5px;
  letter-spacing: 0.12px;
  margin-top: 5px;
}

.margin-cta-btn {
  background: var(--dark);
  color: var(--lime);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #2c2c2c;
}

.margin-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.margin-cta-btn:hover:after {
    transform: scale(4);
}

.margin-cta-btn:hover {
   border-color: #666666;
  color:#0D0D0D;
  background: #ffffff;
}

.margin-mascot-img {
  width: 100%;
  object-fit: contain;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ══════════════════════════════════
   MARKETS SECTION
   ══════════════════════════════════ */

.markets-section {
  background: var(--grey);
  padding: 80px 0;
}

.markets-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1.1;


}

.markets-subtitle {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.65;
  max-width: 420px;
}

.market-card {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  padding: 24px;
}

.market-mini-tag {
  display: inline-block;
  background: var(--lime-light);
  color: var(--dark);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: background 0.25s ease, color 0.25s ease;
  line-height: 12.11px;
  letter-spacing: 0.5px;
}

.market-card-title {
  color: var(--dark);
  margin-bottom: 8px;
  transition: color 0.25s ease;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.376px;
  letter-spacing: -0.48px;
}

.market-card-desc {
  margin: 0;
  transition: color 0.25s ease;
  color: #A0A4AC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.954px;
  letter-spacing: -0.42px;
}

/* ══════════════════════════════════
   GET STARTED – 3 STEPS SECTION
   ══════════════════════════════════ */

.steps-section {
  background: #fff;
  padding: 80px 0;
}


.step-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px 24px 30px;
}

.step-icon-wrap {
  position: relative;

}

.step-icon-wrap i {
  font-size: 1.2rem;
  color: var(--dark);
}

.step-number {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 18px;
  height: 18px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.step-card-desc {
  font-size: 0.855rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  transition: color 0.25s ease;
}

/* ══════════════════════════════════
   MOBILE APP SECTION
   ══════════════════════════════════ */

.app-section {
  background: var(--dark);
  padding-bottom: 80p;
  margin-top: 80px;
  /* overflow: hidden; */
}

.app-phone-wrap {
  margin-top: -40px;
  margin-left: -158px;
}

.mb-36 {
  margin-bottom: 36px;
}

.app-phone-img {
  width: 100%;
  /* max-width: 360px; */
  object-fit: contain;
  display: block;
}

.app-tag {
  border-radius: 20px;
  border: 1px solid rgba(214, 242, 54, 0.30);
  background: rgba(214, 242, 54, 0.16);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  line-height: 14.53px;
  color: var(--lime);
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.app-stat-value {
  color: var(--lime);
  font-size: 24.69px;
  font-weight: 700;
  line-height: 29.9px;
  letter-spacing: -0.741px;
}

.app-star {
  color: var(--lime);
  font-size: 16px;
  margin-left: 2px;
}

.app-stat-label {
  margin-top: 2px;
  color: #999;
  font-size: 11.197px;
  font-weight: 500;
  line-height: 13.56px;
  letter-spacing: -0.336px;
}

.section-padding {
  padding: 94px 0;
}

.gap-30 {
  gap: 30px;
}

/* ── Footer strip ── */
.hero-strip {
  background: var(--dark);
  padding: 16px 0;
}


.hero-strip .badge-pill {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  white-space: nowrap;
  color: #fff;
  font-size: 14.377px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.411px;
  letter-spacing: -0.431px;
  border-radius: 14.206px;
  border: none;
  /* remove solid border */
  backdrop-filter: blur(13.022px);
  isolation: isolate;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

/* Gradient border via pseudo-element */
.hero-strip .badge-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.6px;
  /* border thickness */
  background: conic-gradient(from 180deg at 40% 60%, rgba(255, 255, 255, 0.50) 50.03deg, rgba(153, 153, 153, 0.05) 144.00deg, rgba(255, 255, 255, 0.50) 216.00deg, rgba(153, 153, 153, 0.05) 306.00deg, rgba(255, 255, 255, 0.50) 360deg);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.hero-strip .badge-pill.active-fp,
.hero-strip .badge-pill:hover {
  background: var(--lime);
  color: var(--dark);
  font-weight: 700;
}

/* ══════════════════════════════════
   LIVE MARKET DATA SECTION
   ══════════════════════════════════ */

.live-market-section {
  background: #fff;
  padding: 80px 0;
}


/* Tabs */
.lm-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lm-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.lm-tabs {
  display: flex;
  gap: 6px;
  background: var(--card-bg);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  min-width: 100%;
}

.lm-tab {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lm-tab:hover {
  color: var(--dark);
}

.lm-tab.active {
  background: var(--dark);
  color: #fff;
}

/* Chart card */
.lm-chart-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px 24px 16px;
}

/* Price bar */
.lm-current-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-right: 10px;
}

.lm-change {
  font-size: 0.875rem;
  font-weight: 600;
}

.lm-change.positive {
  color: #1a9c3e;
}

.lm-change.negative {
  color: #e03b3b;
}

.lm-meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.lm-meta-label {
  font-size: 0.65rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lm-meta-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.lm-meta-val.lm-high {
  color: #1a9c3e;
}

.lm-meta-val.lm-low {
  color: #e03b3b;
}

/* SVG chart area */
.lm-chart-area {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

/* X-axis labels */
.lm-x-labels {
  font-size: 0.68rem;
  color: #bbb;
}

/* Ticker strip */
.lm-ticker-strip {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 10px 0;
  overflow: hidden;
}

.lm-ticker-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
  padding: 0 20px;
}

.lm-ticker-strip:hover .lm-ticker-inner {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.lm-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lm-tick-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.lm-tick-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
}

.lm-tick-chg {
  font-size: 0.72rem;
  font-weight: 700;
}

.lm-tick-chg.positive {
  color: #1a9c3e;
}

.lm-tick-chg.negative {
  color: #e03b3b;
}

.lm-tick-sep {
  color: #ddd;
  font-size: 1rem;
}

/* ══════════════════════════════════
   GLOBAL TRUST SECTION
   ══════════════════════════════════ */

.global-trust-section {
  background: rgba(153, 153, 153, 0.05);
  padding: 80px 0;
}

.gt-card {
  background: var(--dark);
  border-radius: 40px;
  padding: 80px;
  overflow: hidden;
  position: relative;
}

/* subtle radial glow in background */
.gt-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.gt-card-content {
  padding: 40px;
}

.gt-card-content-right {
  padding: 40px 40px 40px 15px;
}

.gt-tag {
  margin-bottom: 20px;
  vertical-align: middle;
}

.isolate-border {
  isolation: isolate;
  position: relative;
}

.isolate-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.6px;
  background: conic-gradient(from 180deg at 40% 60%, rgba(255, 255, 255, 0.50) 50.03deg, rgba(153, 153, 153, 0.05) 144.00deg, rgba(255, 255, 255, 0.50) 216.00deg, rgba(153, 153, 153, 0.05) 306.00deg, rgba(255, 255, 255, 0.50) 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.gt-title {
  color: #fff;
}

.gt-title span {
  color: var(--lime);
  font-weight: 800;

}

.gt-subtitle {

  color: #888;
  margin-bottom: 32px;
}

.gt-cta-btn {
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
   position: relative;
    overflow: hidden;
    border: 2px solid #2c2c2c;
}
.gt-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gt-cta-btn:hover::after {
    transform: scale(4);
}

.gt-cta-btn:hover {
  background: var(--dark);
  border-color: var(--lime);
  color: var(--lime);
}

.gt-cta-btn i {
  font-size: 0.95rem;
}

/* Country cards grid */
.gt-countries {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.gt-country-card {
  border-radius: 14px;
  padding: 14px 16px;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.gt-country-card:hover {
  background: rgba(200, 241, 53, 0.08);
  border-color: rgba(200, 241, 53, 0.25);
}

.gt-country-flag {
  font-size: 1.4rem;
  margin-bottom: 7.7px;
  display: block;
  line-height: 1;
}

.gt-country-name {
  font-size: 0.8rem;
  margin-bottom: 7.7px;
  color: #FFF;
  font-size: 14.377px;
  font-style: normal;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: -0.431px;
}

.gt-country-amount {
  font-weight: 700;
  color: #fff;

  font-size: 14.377px;
  line-height: 17.4px;
  letter-spacing: -0.431px;
}

/* ══════════════════════════════════
   CHAT WITH SUPPORT SECTION
   ══════════════════════════════════ */

.support-section {
  background: #fff;
  padding: 80px 0;
}

.support-card {
  background: var(--card-bg);
  border-radius: 40px;
  padding: 80px;
  text-align: center;
  margin: 0 auto;
}

.contact-card {
  background: var(--dark);
  border-radius: 0;
}

.contact-card .support-title {
  color: #fff;
  font-weight: 500;
}

.support-title {

  font-weight: 900;

}

.support-subtitle {
  margin: 0 auto 30px;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  border-radius: 50px;
  padding: 13px 28px;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  border-radius: 8px;
  padding: 8px 28px;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-cta-btn:hover {
  background: #222;
  color: var(--lime);
}

.support-cta-btn:hover svg path {
  fill: var(--lime);
}

.support-cta-btn svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════ */

.faq-section {
  background: #fff;
  padding: 80px 0 90px;
}


/* List wrapper */
.faq-list {
  /* max-width: 720px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Single item */
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item.active {
  background: var(--dark);
  border-color: var(--dark);
}

/* Question button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.22s ease;
  font-size: 20px;
  line-height: 24px;
}

.faq-item.active .faq-question {
  color: #fff;
}

/* Icon */
.faq-icon {
  background: transparent;
  font-size: 0.8rem;
  color: var(--dark);
  transition: background 0.22s ease, color 0.22s ease;
}

.faq-item.active .faq-icon i {
  color: var(--lime);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 16px;
}

.faq-answer p {
  color: var(--lightest);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.376px;
  letter-spacing: 0.16px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 16px;
}

/* Hover on inactive items */
.faq-item:not(.active):hover {
  border-color: var(--dark);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

/* ══════════════════════════════════
   CTA BANNER SECTION
   ══════════════════════════════════ */

.cta-banner-section {
  background: #fff;
  padding: 60px 0 70px;
}

.cta-banner-card {
  background: var(--lime);
  border-radius: 28px;
  padding: 80px;
  text-align: center;
}

.cta-banner-title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
  font-weight: 900;
  line-height: 77.5px;
  letter-spacing: -1.92px;
}

.cta-banner-sub {
  margin-bottom: 32px;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.24px;
  max-width: 61%;
  margin: 0 auto;
  padding-bottom: 40px;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}

.cta-btn-primary {
  background: var(--dark);
  border-radius: 60px;
  padding: 12px 28px;
  font-weight: 700;
  color: #D6F236;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
   position: relative;
    overflow: hidden;
    border: 2px solid #2c2c2c;
}

.cta-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.cta-btn-primary:hover:after {
    transform: scale(4);
}

.cta-btn-primary:hover {
 border-color: #666666;
  color:#0D0D0D;
  background: #ffffff;
}

.cta-btn-primary i {
  font-size: 0.85rem;
}

.cta-btn-ghost {
  background: #fff;
  color: #000;
  border-radius: 60px;
  padding: 12px 28px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-btn-ghost::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.cta-btn-ghost:hover:after {
    transform: scale(4);
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%);
}


.cta-btn-ghost:hover {
  border-color: #666666;
  color:var(--lime);
  background: var(--dark);
}

/* ══════════════════════════════════
   FOOTER SECTION
   ══════════════════════════════════ */

.footer-section {
  background: var(--dark);
  padding: 70px 0 0;
}

/* ── Top layout ── */
.footer-top {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ── Brand column ── */
.footer-brand-col {
  flex: 0 0 260px;
  min-width: 0;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.footer-brand-desc {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-btn svg path {
  transition: all 0.5s ease-in-out;
}

.footer-social-btn:hover svg path {
  fill: var(--lime);
}

/* ── Nav columns ── */
.footer-nav-cols {
  flex: 1;
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.footer-nav-col {
  flex: 1;
  min-width: 0;
}

.footer-nav-heading {
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(153, 153, 153, 0.80);
  font-size: 16px;
  line-height: normal;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  text-decoration: none;
  transition: color 0.2s ease;

  color: var(--lightest);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-nav-list a:hover {
  color: var(--lime);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.sticky-top {
  top: -1px;
}

.negative-img {
  margin-bottom: -55px;
  z-index: -1;
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: var(--lime);
  opacity: 0.2;
  margin-top: 60px;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 66px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--lightest);
  margin: 0;

  font-size: 12px;
  line-height: normal;
}

.footer-copy a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--lightest);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-dot {
  color: #444;
  font-size: 0.75rem;
}

.app-btn {
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.app-btn:hover {
  background-color: #fff;
  color: var(--dark);
}

.app-btn:hover svg path {
  fill: var(--dark);
}

.app-bar-para {
  color: #000;
  font-size: 14.377px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.431px;
}


/* ══════════════════════════════════
   MARGIN TABLE
   ══════════════════════════════════ */

.mgt-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: 1.5px solid #999;
  border-radius: 20px;
  overflow: hidden;
  font-size: 13.5px;
  cursor: pointer;
}

/* ── Header ── */
.mgt-th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  padding: 20px 24px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  text-align: center;
  width: 33.333%;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.54px;
}

.mgt-th:last-child {
  border-right: none;
}

.mgt-th--center {
  text-align: center;
}

/* ── Body rows ── */
.mgt-td {
  padding: 16px 24px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  color: var(--dark);
  background: #fff;
  width: 33.333%;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.54px;
}

.mgt-td:last-child {
  border-right: none;
}

.mgt-td--center {
  text-align: center;
}

.mgt-table tbody tr:last-child .mgt-td {
  border-bottom: none;
}

.mgt-table tbody tr:hover .mgt-td {
  background: rgb(214 242 54 / 10%);
}

.visible-none {
  visibility: hidden;
}

/* ── Separate notes card (below the table, with gap) ── */
.mgt-notes {
  border: 1px solid #999;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

.mgt-note-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  background: #fff;
}

.mgt-note-row--last {
  border-top: 1px solid #999;
}

.mgt-note-label {
  color: var(--dark);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.54px;
}

.mgt-note-val {
  font-size: 27px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: -0.81px;
}

.mgt-note-time {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.54px;
}

/* ══════════════════════════════════
   MARGIN CALCULATOR SECTION
   ══════════════════════════════════ */

.mc-section {
  padding: 80px 0 80px;
  background: #f7f7f5;
}

/* ── Tabs ── */
.mc-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.mc-tabs {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
}

.mc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #7A7A7A;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.mc-tab--active {
  background: var(--dark);
  color: var(--lime)
}

.mc-tab:not(.mc-tab--active):hover {
  color: var(--lime);
  background: var(--dark);
}

.mc-tab-avatar {
  display: inline-flex;
  align-items: center;
}

/* ── Cards grid ── */
.mc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Single card ── */
.mc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.mc-card:hover,
.mc-card--dark {
  background: var(--dark);
  border-color: var(--dark);
}

/* ── Card header ── */
.mc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mc-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.48px;
  margin-bottom: 4px;
  transition: color 0.25s ease;
  line-height: 19px
}

.mc-card-sub {
  font-size: 12px;
  transition: color 0.25s ease;
  color: #6B7280;
  font-weight: 500;
  line-height: 14.5px;
  letter-spacing: 0.6px;
}

/* Dark state overrides */
.mc-card:hover .mc-card-title,
.mc-card--dark .mc-card-title {
  color: #fff;
}

.mc-card:hover .mc-card-sub,
.mc-card--dark .mc-card-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Exchange badge ── */
.mc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.mc-badge--mcx {
  background: rgba(214, 242, 54, 0.20);
  color: #5a6e00;
  border: 1px solid rgba(214, 242, 54, 0.50);
}

.mc-badge--nse {
  background: rgba(214, 242, 54, 0.15);
  color: var(--lime);
  border: 1px solid rgba(214, 242, 54, 0.30);
}

.mc-card:hover .mc-badge--mcx,
.mc-card--dark .mc-badge--mcx {
  background: rgba(214, 242, 54, 0.15);
  color: var(--lime);
  border-color: rgba(214, 242, 54, 0.30);
}

/* ── Formula box ── */
.mc-formula-box {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 18px 17px;
  transition: background 0.25s ease;
}

.mc-card:hover .mc-formula-box,
.mc-card--dark .mc-formula-box {
  background: rgba(255, 255, 255, 0.10);
}

.mc-formula-label {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.25s ease;
  color: #6B7280;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.7px;
}

.mc-card:hover .mc-formula-label,
.mc-card--dark .mc-formula-label {
  color: rgba(255, 255, 255, 0.45);
}

.mc-formula-text {
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.25s ease;
  color: #000;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.7px;
}

.mc-card:hover .mc-formula-text,
.mc-card--dark .mc-formula-text {
  color: #fff;
}

.mc-formula-calc {
  transition: color 0.25s ease;
  color: #737373;
  font-size: 14px;
  font-style: normal;
  font-weight: 17px;
  letter-spacing: 0.7px;
}

.mc-card:hover .mc-formula-calc,
.mc-card--dark .mc-formula-calc {
  color: rgba(255, 255, 255, 0.50);
}

/* ── Result row ── */
.mc-result {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-result-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.mc-result-text {
  transition: color 0.25s ease;
  color: var(--dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 17px;
  letter-spacing: 0.7px;
}

.mc-card:hover .mc-result-text,
.mc-card--dark .mc-result-text {
  color: #fff;
}

/* ══════════════════════════════════
   RISK MANAGEMENT SECTION
   ══════════════════════════════════ */

.rm-section {
  padding: 90px 0;
  background: var(--dark);
}

/* ── Left col ── */

.rm-desc {
  margin-bottom: 28px;

  color: #7A7A7A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.8px;
}

/* ── Checklist ── */
.rm-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.rm-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.16px;
}

.rm-check-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── Right col – rules ── */
.rm-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rm-rule-card {
  display: flex;
  align-items: center;
  gap: 20px;

  border-radius: 14px;
  border: 1px solid rgba(214, 242, 54, 0.10);
  background: rgba(153, 153, 153, 0.10);
  padding: 24px 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.rm-rule-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.rm-rule-num {
  flex-shrink: 0;
  min-width: 30px;
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 29px;
  letter-spacing: -0.24px;
}

.rm-rule-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.12px;
}


.terms-section {
  padding: 90px 0 80px;
  background: #fff;
}


/* ── Grid ── */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

/* Last item alone spans left column only */
.terms-item--full {
  grid-column: 1 / 2;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  padding: 24px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 14px;
  border: 1px solid rgba(214, 242, 54, 0.10);
  background: rgba(153, 153, 153, 0.10);
  flex-direction: column;
}

.terms-item.term-item-no-header {
  flex-direction: row;
  gap: 8px;
}

.terms-item.term-item-no-header .terms-dot {
  margin-top: 4px;
}

.terms-item.term-item-no-header p {
  margin-left: 0;
}

.terms-item  h6 {
display: flex;
    align-items: center;
    gap: 8px;
}

.terms-item:hover {
  border-color: var(--dark);
  background: #fff;
}

.terms-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #869437;
  flex-shrink: 0;
  margin-top: 5px;
	margin-top: 0;
    display: inline-flex;
}

.terms-item p {
  color: var(--dark);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0.12px;
    margin-left: 16px;
}

/* ══════════════════════════════════
   START HERE – STEP CARDS GRID
   ══════════════════════════════════ */

.step-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Single card ── */
.step-card-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Image / illustration wrap ── */
.step-card-img-wrap {
  position: relative;
  overflow: hidden;
  /* background: #f7f8f4; */
  min-height: 230px;
  display: flex;
  align-items: stretch;
  /* border-radius: 26px; */
  /* border: 1px solid rgba(0, 0, 0, 0.10); */
}

.iframe-wrap {
  background: #f7f8f4;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.step-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

/* Fallback when image missing — keeps the card looking clean */
.step-card-img-placeholder {
  background: linear-gradient(135deg, #f5f7ef 0%, #eef2e4 100%);
  min-height: 210px;
}

/* Overlay text (visible on top of image) */
.step-card-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}

.step-card-overlay-text span {
  font-size: 12.5px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  font-family: 'Satoshi', sans-serif;
}

.step-card-overlay-text strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.6px;
  line-height: 1.15;
  font-family: 'Satoshi', sans-serif;
}

.step-card-overlay-text em {
  font-style: normal;
  color: #5a7a00;
  font-weight: 600;
}

.step-lock-icon {
  font-size: 14px;
}

/* ── Label below card ── */
.step-card-label {
  text-align: center;
  margin: 0;
  letter-spacing: -0.2px;
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

/* ══════════════════════════════════
   GLOBAL REACH – STATS ROW
   ══════════════════════════════════ */

.gr-stats-row {
  display: flex;
  align-items: flex-start;
  gap: 88px;
  padding-top: 10px;
  padding-bottom: 20px;
  justify-content: center;
}

.gr-stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gr-stat-icon {
  flex-shrink: 0;
  margin-top: 4px;
}


.gr-stat:first-child .gr-stat-icon {
  opacity: 0.3;
}

.gr-stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gr-stat-value {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #000;
  font-weight: 700;
  line-height: normal;
}

.gr-stat-label {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  line-height: normal;
}

.gr-stat-year {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  line-height: normal;
}

/* ══════════════════════════════════
   EXECUTION AT SCALE SECTION
   ══════════════════════════════════ */

.eas-section {
  background: #fff;
  padding: 0;
}

.eas-card {
  background: var(--dark);
  padding: 80px 60px 90px;
  text-align: center;
}

.eas-header {
  max-width: 560px;
  margin: 0 auto 64px;
}

.eas-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.eas-subtitle {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
  margin: 0 auto;
}

/* ── Journey row ── */
.eas-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

/* ── Milestones ── */
.eas-milestone {
  flex-shrink: 0;
  min-width: 140px;
}

.eas-milestone--left {
  text-align: left;
}

.eas-milestone--right {
  text-align: right;
}

.eas-year {
  color: #FFF;
  font-size: 42px;
  font-weight: 400;
  line-height: normal;
}

.eas-count {
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
}

/* ── Animated line ── */
.eas-line-wrap {
  flex: 1;
  padding: 0 24px;
  position: relative;
}

.eas-line-track {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: visible;
}

.eas-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #666 0%, var(--lime) 100%);
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}

/* End dots */
.eas-line-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  z-index: 1;
}

.eas-line-dot--start {
  left: -5px;
  background: var(--lime);
}

.eas-line-dot--end {
  right: -5px;
}

/* Travelling pulse */
.eas-line-pulse {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  box-shadow: 0 0 0 4px rgba(200, 241, 53, 0.25);
  z-index: 2;
  transition: left 1.8s cubic-bezier(.4, 0, .2, 1), opacity .3s;
}

.btn-brand-light {
  color: #7A7A7A;
  font-family: 'Inter', sans-serif;
  font-size: 14.4px;
  font-weight: 600;
  border-radius: 60px;
  border: 1px solid rgba(13, 13, 13, 0.20);
  background: #FFF;
  padding: 10px 16px;
  transition: all 0.5s ease-in-out;
  line-height: 27px;
  border: 2px solid #2c2c2c;
  position: relative;
  overflow: hidden;
}

.btn-brand-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}
.btn-brand-light:hover:after {
    transform: scale(4);
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%);
}


.btn-brand-light:hover,
.btn-brand-light:focus {
  border-color: #666666;
  color:var(--lime);
  background: var(--dark);
}

.blog-detail-wrap img {
  margin-bottom: 50px;
}

.sub-heading {
  font-size: clamp(1rem, 5vw, 1.5rem);
  line-height: normal;
}



.redirect-inner {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-radius: 20px;
  border: 0.83px solid #EEE;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(13, 13, 13, 0.10);
  margin-top: 70px;
}

.redirect-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.redirect-check {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(214, 242, 54, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.redirect-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.redirect-text strong {
  font-size: 14px;
  font-weight: 700;
  color: rgba(13, 13, 13, 0.80);
  font-size: 14.25px;
  line-height: normal;
}

.redirect-text span {
  font-size: 14px;
  color: rgba(13, 13, 13, 0.80);
  font-size: 14.25px;
  font-weight: 500;
  line-height: normal;
}

.redirect-divider {
  width: 1px;
  height: 60px;
  background: rgba(13, 13, 13, 0.60);
}

.redirect-or {
  color: #000;
  font-size: 14.25px;
  font-weight: 500;
  line-height: normal;
}

/* Countdown circle */
.countdown-circle {
  width: 56px;
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 60px;
}

.countdown-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.countdown-circle .count-num {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.countdown-ring-bg {
  stroke: rgba(0, 0, 0, 0.08);
  fill: none;
  stroke-width: 3;
}

.countdown-ring-fill {
  stroke: var(--lime);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.btn-stay {
  padding: 14px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;

  border-radius: 20px;
  border: 0.83px solid #EEE;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(13, 13, 13, 0.10);
  color: #000;
  font-size: 14.25px;
  font-weight: 500;
  line-height: normal;
}

.redirect-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn-stay:hover {
  border-color: var(--dark);
  background: #fff;
}

.btn-go-webtrader {
  color: var(--dark);
  padding: 14px 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-radius: 20px;
  border: 0.83px solid #0D0D0D;
  background: #D6F236;
  box-shadow: 0 0 20px 0 rgba(13, 13, 13, 0.10);
  color: #0D0D0D;
  font-size: 14.25px;
  font-weight: 500;
  line-height: normal;
}

.btn-go-webtrader:hover {
  background: #c8e820;
  color: var(--dark);
}

.btn-go-webtrader svg {
  transition: transform 0.2s ease;
}

.btn-go-webtrader:hover svg {
  transform: translateX(3px);
}

/* ── HERO SECTION ── */
.thankyou-hero {
  padding: 60px 0 0;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  max-width: 600px;
}


.hero-title .brand-name {
  color: var(--lime);
  display: inline-block;
}

.hero-desc {
  margin-top: 12px;
  margin-bottom: 28px;
  color: #0D0D0D;
  font-size: 34px;
  font-weight: 500;
  line-height: 35px;
}

/* Account active badge */
.account-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(214, 242, 54, 0.4);
  border-radius: 22.8px;
  background: rgba(214, 242, 54, 0.10);
  padding: 15px 11px;

}

.account-active-badge .badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(214, 242, 54, 0.60);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  line-height: normal;
}

.badge-text strong {
  font-weight: 700;
  display: block;
  color: #0D0D0D;
  font-size: 14.25px;
  line-height: normal;
}

.badge-text span {
  color: rgba(13, 13, 13, 0.80);
  font-weight: 500;

}

/* ── MASCOT COLUMN ── */
.mascot-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 0;
}

.mascot-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* K mascot SVG illustration */
.k-mascot-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating confetti dots */
.confetti-dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDot 3s ease-in-out infinite alternate;
}

@keyframes floatDot {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-18px) rotate(15deg);
  }
}

.thankyou-footer-bg {
  background: var(--dark);
  padding: 20px 30px;
  margin-top: 60px;

}

.thankyou-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.thankyou-footer .footer-legal-links a {
  color: #fff;
}

.thankyou-footer .footer-dot {
  color: #fff;
}

.thankyou-footer .footer-copy {
  color: #fff;
}

.help-download-section {
  padding: 0 0 60px;
}

.help-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* ── Help Card ── */
.help-card {
  border-radius: 20px;
  padding: 30px 15px;
  border: 0.83px solid rgba(13, 13, 13, 0.20);
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
}

.help-headset-img {
  flex-shrink: 0;
}

.help-headset-img svg {
  width: 100%;
  height: auto;
  display: block;
}

.help-card-title {
  font-family: 'Satoshi', sans-serif;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.help-card-desc {
  margin-bottom: 18px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.btn-whatsapp:hover {
  background: #c8e820;
  color: var(--dark);
}

/* ── Download Card ── */
.download-card {
  border: 1px solid rgba(13, 13, 13, 0.20);
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  overflow: hidden;
}

.download-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-card-left {
  flex: 1;
  min-width: 0;
}

.download-card-title {
  font-family: 'Satoshi', sans-serif;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.download-card-desc {
  margin-bottom: 18px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.download-btns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #A6A6A6;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: #fff;
}

.download-btn:hover {
  border-color: var(--dark);
  background: rgba(0, 0, 0, 0.02);
}

.download-btn svg {
  flex-shrink: 0;
}

.download-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.download-btn-small {
  font-size: 9px;
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.download-btn-big {
  font-size: 14px;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.download-mascot {
  flex-shrink: 0;
  align-self: flex-end;
}

.download-mascot svg {
  width: 100%;
  height: auto;
  display: block;
}

.market-cta-section {
  padding: 0 0 60px;
}

.market-cta-card {
  background: #0D0D0D;
  border-radius: 20px;
  padding: 0 63px 0 48px;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  min-height: 110px;
}

.market-cta-mascot {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: -48px;
}

.market-cta-mascot svg {
  width: 100%;
  height: auto;
  display: block;
}

.market-cta-text {
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.market-cta-headline {
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4px;
}

.market-cta-sub {
  font-weight: 700;
  color: var(--lime);
  margin: 0 0 2px;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4px;
}

.market-cta-chart {
  flex-shrink: 0;
  z-index: 1;
}

.market-cta-chart svg {
  width: 100%;
  display: block;
}

.market-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.2s ease, transform 0.15s ease;
  font-size: 20px;
  line-height: normal;
}

.market-cta-btn:hover {
  background: white;
}


.learn-heading {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  color: #0D0D0D;
  line-height: normal;
  margin: 0;
}

.learn-subheading {
  font-weight: 400;
  color: #0D0D0D;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}

.tutorial-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tutorial-card {
  background: #fff;
  border-radius: 16px;
  border: 0.83px solid rgba(13, 13, 13, 0.20);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
}

.tutorial-card:hover {
  border-color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tutorial-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(214, 242, 54, 0.60);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--dark);
  line-height: normal;
  margin-bottom: 20px;
}

.tutorial-card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-size: 18px;
  line-height: normal;
}

.tutorial-card-desc {
  color: #0D0D0D;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 13px;
}

.btn-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  background: #D6F236;
  color: #0D0D0D;
  line-height: normal;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-watch-video:hover {
  background: #222;
  color: var(--lime);
}

.btn-watch-video .play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tutorial-card-visual {
  align-self: end;
}

.why-section {
  padding: 0 0 60px;
}

.why-card {
  padding: 30px 40px 20px;
  border-radius: 20px;
  border: 0.83px solid rgba(13, 13, 13, 0.20);
  background: #FFF;
  margin-top: 44px;
}

.why-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.why-features-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 120px;
}

.why-feature-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: rgba(214, 242, 54, 0.40);
  border: 1px solid rgba(214, 242, 54, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: 0.5s ease-in-out;
}

.why-feature:hover .why-feature-icon {
  background: #fff;
  border-color: var(--dark);
}

.why-feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 19px;
  letter-spacing: -0.127px;
}

.why-feature-desc {
  font-size: 11.5px;
  color: #0D0D0D;
  text-align: center;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -0.111px;
}

.why-tnc {
  font-size: 11.5px;
  color: #0D0D0D;
  text-align: center;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -0.111px;
  margin-top: 30px;
}

.feature-divider {
  height: auto;
  width: 1px;
  background: rgba(13, 13, 13, 0.60);
}

.social-icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 0.83px solid rgba(13, 13, 13, 0.20);
  background: #FFF;
  padding: 22px 40px;
  flex-wrap: nowrap;
  gap: 40px;
}

.social-content h5 {
  color: #000;
  font-size: 22.5px;
  font-weight: 700;
  line-height: normal;
}

.social-content p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.18px;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.social-icons .fb:hover svg path {
  fill: #1877F2;
}

.social-icons .insta:hover svg path {
  fill: #E4405F;
}

.social-icons .wtsp:hover svg path {
  fill: #25D366;
}

.social-icons .yt:hover svg path {
  fill: #FF0000;
}

.social-icons .tele:hover svg path {
  fill: #229ED9;
}

/* signup page css */

.kwik-navbar {
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.kwik-navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kwik-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-dark);
  text-decoration: none;
}

.kwik-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--brand-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
}

.navbar-right span {
  color: #6B7280;
}

.btn-signin {
  border-radius: 53.188px;
  background: #0D0D0D;
  border: none;
  padding: 9px 24px;
  color: #D6F236;
  font-size: 12.41px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-signin:hover {
  color: #fff;
}

/* ── MAIN SIGNUP SECTION ── */
.signup-section {
  /* min-height: calc(100vh - 62px); */
  display: flex;
  align-items: stretch;
  padding: 30px 0;
}

.signup-left {
  flex: 1;
}

.left-headline {
  position: relative;
  z-index: 1;
}

.left-headline h1 {
  font-size: clamp(24px, 3.2vw, 64px);
  line-height: 77px;
  margin-bottom: 16px;
  color: #0D0D0D;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -1.92px;
}

.left-headline h1 .lime {
  color: var(--brand-lime);
}

.left-subtitle {
  font-size: clamp(14px, 3.2vw, 20px);
  line-height: 24px;
  margin-bottom: 28px;
  color: #1E1E1E;
  font-weight: 400;
  letter-spacing: -0.6px;
}

/* Social proof strip */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}



.social-proof-text {
  color: #0D0D0D;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.54px;
  display: flex;
  justify-content: space-between;
  gap: 23px;
}

.social-proof-text p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.social-proof-text p span {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.42px;
}

.social-proof-text p:first-child {
  border-right: 1px solid rgba(13, 13, 13, 0.60);
  padding: 0 23px;

}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(214, 242, 54, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.feat-text {
  display: block;
  margin-bottom: 1px;
  color: #0D0D0D;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.17px;
  display: flex;
  flex-direction: column;
}

.signup-banner-img {
  max-width: 100%;
  margin-top: auto;
}

.signup-note {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(13, 13, 13, 0.80);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.3px;
  border-radius: 12px;
  background: rgba(214, 242, 54, 0.10);
  padding: 8px 12px;
  margin-top: 45px;
}

.signup-note span {
  display: flex;
  width: 20px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  aspect-ratio: 1/1;
  border-radius: 52px;
  background: rgba(214, 242, 54, 0.60);
}

/* Trust badges row */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.trust-badge i {
  color: var(--brand-lime);
  font-size: 13px;
}

/* ── RIGHT: FORM ── */
.signup-right {
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  border-radius: 20px;
  border: 0.83px solid #EEE;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(13, 13, 13, 0.10);
  width: 520px;
}

.form-header {
  margin-bottom: 22px;
}

.form-header h2 {
  margin-bottom: 8px;
  color: #0D0D0D;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.form-header p {
  margin: 0;
  color: #0D0D0D;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.kwik-form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 9px;
  color: #0D0D0D;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
}

.kwik-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.18px solid #EEE;
  background: #FFF;
  padding: 9px 15px;
  gap: 12px;
  border-radius: 10px;
}

.kwik-input-wrap .input-icon {
  position: absolute;
  left: 13px;
  color: #ACACAC;
  font-size: 14px;
  pointer-events: none;
}

.kwik-input {
  width: 100%;
  border: 0;
  background: #FFF;
  font-size: 14px;
  color: #0D0D0D;
  outline: none;
}

.kwik-input::placeholder {
  color: rgba(13, 13, 13, 0.60);
}

.kwik-input:focus {
  background: #fff;
}

/* Phone row */
.phone-row {
  padding: 0 15px;
}

.select-relative {
  position: relative;
}

.select-relative svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}

.phone-prefix {
  border: 0;
  font-size: 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
  color: #0D0D0D;
  padding-right: 10px;
 -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-color: transparent !important;
}

.phone-input-wrap {
  border-left: 1px solid #eee;
  padding: 9px 15px;
  flex: 1;
  position: relative;
}

.btn-otp {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
  border: 0.58px solid #0D0D0D;
  background: #D6F236;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
	color:#0D0D0D;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-otp:hover {
  opacity: 0.85;
}

.phone-input-wrap .kwik-input {
  padding-right: 72px;
}

/* OTP boxes */
.otp-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.otp-hint {
  font-size: 11px;
  color: var(--text-muted-kwik);
  margin-bottom: 6px;
}

.otp-boxes {
  display: flex;
  gap: 8px;
      padding-left: 28px;
}

.otp-box {
  width: 42px;
  height: 42px;
  border-radius: 8.287px;
  border: 1.036px solid #EEE;
  background: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  color: #0D0D0D;
  ;
}

.otp-box:focus {
  border-color: #D6F236;
  background: #fff;
}

/* Password */
.kwik-input.pr-10 {
  padding-right: 40px;
}

.eye-btn {
  position: absolute;
  right: 13px;
  background: none;
  border: none;
  color: #0D0D0D;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.kwik-select {
  width: 100%;
  border: 0;
  font-size: 14px;
  color: rgba(13, 13, 13, 0.60);
  outline: none;
  appearance: none;
  cursor: pointer;
-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-color: transparent !important;
}

.kwik-select:focus {
  border-color: var(--brand-dark);
}

.select-chevron {
  position: absolute;
  right: 13px;
  pointer-events: none;
  color: #ACACAC;
  font-size: 13px;
}

/* Password hints */
.pwd-hints {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pwd-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #0D0D0D;
  font-weight: 700;
  letter-spacing: 0.12px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTA Button */
.btn-create {
  width: 100%;
  border-radius: 8px;
  border: 0.628px solid #0D0D0D;
  background: #D6F236;
  color: #0D0D0D;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  line-height: 16px;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: -0.276px;
}

.btn-create:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-create:active {
  transform: translateY(0);
}

/* Secure badges */
.secure-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.secure-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0D0D0D;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.12px;
}

.secure-item i {
  color: #22C55E;
  font-size: 12px;
}

.form-footer {
  text-align: center;
  color: #0D0D0D;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.12px;
}

.form-footer a {
  color: #869437;
  font-weight: 700;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Terms line */
.terms-line {
  text-align: center;
  color: #0D0D0D;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.12px;
}

.terms-line a {
  color: #869437;
  font-weight: 700;
  text-decoration: none;
}

/* Footer trust strip */

.footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(13, 13, 13, 0.10);
  position: relative;
  z-index: 1;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
  padding-right: 30px;
}

.signup-foot {
  background: #fff;
  margin-top: 10px;
}

.signup-foot .footer-copy {
  color: #1E1E1E;
}

.signup-foot .footer-legal-links a {
  color: #1E1E1E;
}

.signup-foot .footer-copy a {
  color: #869437;
}

.footer-trust-items {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 0 20px;
}

.signup-foot .footer-dot {
  color: #D9D9D9;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fti-icon {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19.087px;
  aspect-ratio: 1/1;
  border-radius: 49.626px;
  background: rgba(214, 242, 54, 0.60);
}

.fti-icon i {
  color: var(--brand-lime);
  font-size: 14px;
}

.fti-text {
  display: flex;
  color: #0D0D0D;
     font-size: 15px;
    font-weight: 400;
    line-height: 22px;
  letter-spacing: -0.2px;
  flex-direction: column;
}

.fti-text strong {
  font-weight: 500;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--brand-white);
}

.footer-dot {
  opacity: 0.3;
}

/* ── OTP Popup ── */
.otp-popup {
  display: none;
  position: absolute;
  left: 50px;
  right: 50px;
  z-index: 100;
  background: #fff;
  top: 25%;
}

.otp-popup-inner {
  padding: 11px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  border-radius: 6.403px;
  border: 0.566px solid #000;
  background: rgba(214, 242, 54, 0.10);
}

.otp-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.otp-popup-header-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.otp-popup-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #D6F236;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.otp-popup-title {
  font-size: 12px;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
  line-height: 1.4;
}

.otp-popup-subtitle {
  font-size: 11px;
  color: #6B7280;
  margin: 2px 0 0;
}

.otp-popup-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #6B7280;
  padding: 0 2px;
  flex-shrink: 0;
}

.otp-popup-close:hover {
  color: #0D0D0D;
}

.otp-popup-resend {
  font-size: 11px;
  color: #6B7280;
  margin: 16px 0;
  padding-left: 28px;
}

.otp-popup-resend a {
  color: #616D21;
  font-weight: 700;
  text-decoration: none;
}

.otp-popup-resend a:hover {
  text-decoration: underline;
}

.otp-popup-status {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 8px;
}

.otp-popup-status.verifying {
  color: #869437;
}

.otp-popup-status.error {
  color: #EF4444;
}

.error {
    color: #f10404;
    font-size: 14px;
}

@keyframes otpSpin {
  to { transform: rotate(360deg); }
}

.otp-spin {
  animation: otpSpin 1s linear infinite;
}


.wa-widget-playstore-button {
	margin: 0 0 30px 0 !important;
    position: fixed !important;
    z-index: 11 !important;
    bottom: 0 !important;
    text-align: center !important;
    height: 50px;
    min-width: 50px;
    visibility: visible;
    right: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-widget-playstore-button a {
    width: 50px;
    height: 50px;
    background: #e5f14c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-badge svg {
  overflow: visible;
  position: relative;
}

.live-badge svg circle {
  animation: liveDot 1.5s infinite;
  transform-origin: center;
}

@keyframes liveDot {
  0% {
    filter: drop-shadow(0 0 0 rgba(83, 210, 90, 0.8));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 6px rgba(83, 210, 90, 0.9));
    transform: scale(1.15);
  }

  100% {
    filter: drop-shadow(0 0 0 rgba(83, 210, 90, 0));
    transform: scale(1);
  }
}

.testimonial-slick-slider {
  position: relative;
  z-index: 1;
}

.testimonial-slick-slider,
.testimonial-slick-slider .slick-list,
.testimonial-slick-slider .slick-track,
.testimonial-slick-slider .slick-slide {
  touch-action: pan-x !important;
}

.testimonial-slick-slider .slick-list {
  touch-action: pan-x !important;
}

.testimonial-slick-slider .slick-slide.slick-cloned {
  pointer-events: auto !important;
}

/* Base Portrait Card Setup */
.portrait-video-card {
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  height: 480px;
}

.portrait-video-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* default: videos clickable */
}

.portrait-video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none !important; 
}

.portrait-video-card iframe.tap-active {
  pointer-events: auto !important;
}

/* .slick-current .portrait-video-card iframe,
.slick-active .portrait-video-card iframe {
  pointer-events: none !important;
} */

.brand-logo-top {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #D6F236;
  font-weight: 900;
  font-size: 1.5rem;
  z-index: 2;
}

/* Anchor container for the fixed layout calculations */
.slider-window-wrapper {
  position: relative;
  max-width: 95%;
  touch-action: pan-x; 
}

/* Mascot stays completely still on the right edge while items slide behind it */
.fixed-mascot-holder {
      position: absolute;
    bottom: 12px;
    right: -58px;
    width: 70px;
    z-index: 1;
    pointer-events: none;
}

.fixed-mascot-holder img {
  width: 100%;
  height: auto;
  display: block;
}

.slick-dots {
  bottom: -45px;
}

.slick-dots li button:before {
    font-size: 10px;
}

/* video added in signup */

.video-parent {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.video-parent video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#soundBtn {
    position: absolute;
    bottom: 15px;
    right: 20px;
    padding: 5px;
    background: rgb(214 242 54);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn-playstore {
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
    padding: 10px;
    color: #202020;
    background: rgb(214 242 54);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.btn.btn-playstore:hover, 
.btn.btn-playstore:focus, 
.btn.btn-playstore:active {
   background: rgb(214 242 54) !important;
  }

button:disabled {
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

.disable-click, .disabled-link {
  pointer-events: none;
  cursor: default;
  color: gray;
  text-decoration: none;
}

.info-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}

.info-icon {
  display: block;
  opacity: 1;
  transition: opacity 0.2s;
}

.info-tooltip-wrap:hover .info-icon {
  opacity: 1;
}

  .tooltip-box {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  background: #1E1E1E;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 99;
}

/* Arrow pointing left (from tooltip back to icon) */
.tooltip-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #1E1E1E;
  border-left: none;
}

.info-tooltip-wrap:hover .tooltip-box,
.tooltip-box.active {
  visibility: visible;
  opacity: 1;
}

.tooltip-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.2s;
}
  
.invalid {
  border: 1.18px solid #EF4444;
}

.signup-scroll-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
 
.signup-scroll-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
 
/* Modal container */
.signup-scroll-modal {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  width: 100%;
  max-width: 950px;
  max-height: 95vh;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signup-scroll-right .kwik-form-group label {
  display: none;
}
 
.signup-scroll-overlay.active .signup-scroll-modal {
  transform: translateY(0) scale(1);
}
 
/* Close button */
.signup-scroll-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(13, 13, 13, 0.08);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #0d0d0d;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
 
.signup-scroll-close:hover {
  background: rgba(13, 13, 13, 0.15);
  transform: rotate(90deg);
}
 
/* LEFT image panel */
.signup-scroll-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
 
.signup-scroll-left img {
  width: 100%;
  height: 100%;
  margin-bottom: -68px;
}

/* RIGHT form panel */
.signup-scroll-right {
  flex: 1;
  overflow-y: auto;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
}
 
.signup-scroll-right::-webkit-scrollbar {
  width: 4px;
}
.signup-scroll-right::-webkit-scrollbar-track { background: #f0f0f0; }
.signup-scroll-right::-webkit-scrollbar-thumb { background: #D6F236; border-radius: 2px; }

 
/* Reuse existing .kwik-form-group styles — they already apply */
/* Extra overrides to ensure no conflicts inside popup */
.signup-scroll-right .kwik-form-group {
  margin-bottom: 0;
}
 
.signup-scroll-right .kwik-input-wrap {
  border: 1.18px solid #EEE;
  border-radius: 10px;
}
 
.signup-scroll-right .kwik-input-wrap:focus-within {
  border-color: #D6F236;
  box-shadow: 0 0 0 3px rgba(214, 242, 54, 0.18);
}
 
/* OTP popup inside scroll modal — reposition */
.signup-scroll-right #ss-otpPopup {
  position: absolute;
  left: 32px;
  right: 32px;
  top: auto;
  z-index: 20;
  background: #fff;
}
 
/* Signup form gap */
.signup-scroll-right .signup-form {
  gap: 11px;
}
 
/* MOBILE NAV DRAWER */

body.drawer-open {
  overflow: hidden;
  max-width: 100vw;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1040;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active { display: block; }

.mobile-nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;        
  box-sizing: border-box;
  will-change: transform; 
}
.mobile-nav-drawer.active { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(13,13,13,0.08);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(13,13,13,0.06);
  cursor: pointer;
}
.mobile-nav-item:hover { background: var(--lime); }

.mobile-nav-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-nav-accordion.open .mobile-nav-chevron { transform: rotate(180deg); }

.mobile-nav-sub { display: none; flex-direction: column; background: rgba(153,153,153,0.05); }
.mobile-nav-sub.open { display: flex; }

.mobile-nav-sub-item {
  padding: 14px 24px 14px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(13,13,13,0.06);
}
.mobile-nav-sub-item:hover { background: var(--lime); }

.mobile-nav-cta {
  padding: 20px 24px 36px;
  border-top: 1px solid rgba(13,13,13,0.08);
}




/* ── Card container: scales in from top-center ── */
.username-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 8.287px;
  border: 1px solid rgba(13, 13, 13, 0.60);
  background: rgba(214, 242, 54, 0.20);
  padding: 16px 19px;
  max-width: 100%;
  transform-origin: top center;
  /* opacity: 0;
  transform: scaleY(0.4) scaleX(0.92) translateY(-10px);
  animation: iosNotifCardIn 0.52s cubic-bezier(0.28, 1.36, 0.52, 1) 0.5s forwards; */
  
}

/* ── The icon circle: pops in after card lands ── */
.username-card-icon {
  width: 26px;
  height: 24px;
  border-radius: 4.165px;
  background: rgba(214, 242, 54, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0;
  transform: scale(0.4);
  animation: iosNotifIconPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
  
}

/* ── Body wrapper: clips children during their slide ── */
.username-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

/* ── Label row wrapper: clips the sliding label text ── */
.username-card-label-wrap {
  overflow: hidden;
}

/* ── Label text: slides in from right side ── */
.username-card-label {
  font-size: 13px;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.4;
  display: block;
  opacity: 0;
  transform: translateX(22px);
  animation: iosNotifTextSlide 0.38s cubic-bezier(0.25, 1.0, 0.5, 1) 1.0s forwards;
  
}

/* ── Value wrapper: clips the rising value text ── */
.username-card-value-wrap {
  overflow: hidden;
}

/* ── Value (phone number): fades up from below ── */
.username-card-value {
  font-size: 20px;
  font-weight: 700;
  color: #4A550D;
  line-height: 1.2;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: iosNotifValueRise 0.42s cubic-bezier(0.25, 1.0, 0.5, 1) 1.12s forwards;
  
}

/* ── Hint wrapper: clips the rising hint text ── */
.username-card-hint-wrap {
  overflow: hidden;
}

/* ── Hint text: fades up last, slowest ── */
.username-card-hint {
  font-size: 10px;
  font-weight: 400;
  color: #0D0D0D;
  line-height: 1.4;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: iosNotifHintRise 0.4s cubic-bezier(0.25, 1.0, 0.5, 1) 1.28s forwards;
  
}



/* ── Card container: scales in from top-center ── */
.rm-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 8.287px;
border: 1px solid rgba(13, 13, 13, 0.60);
background: rgba(214, 242, 54, 0.20);
  padding: 16px 19px;
  max-width: 100%;
  transform-origin: top center;
  /* opacity: 0;
  transform: scaleY(0.4) scaleX(0.92) translateY(-10px);
  animation: iosNotifCardIn 0.52s cubic-bezier(0.28, 1.36, 0.52, 1) 0.5s forwards; */
  
  flex-direction: column;
}

.rm-card .d-flex {
  gap: 14px;
}

/* ── The icon circle: pops in after card lands ── */
.rm-card-icon {
  width: 26px;
  height: 24px;
  border-radius: 4.165px;
  background: rgba(214, 242, 54, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0;
  transform: scale(0.4);
  animation: iosNotifIconPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
  
}

/* ── Body wrapper: clips children during their slide ── */
.rm-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

/* ── Label row wrapper: clips the sliding label text ── */
.rm-card-label-wrap {
  overflow: hidden;
}

/* ── Label text: slides in from right side ── */
.rm-card-label {
  font-size: 14px;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.4;
  display: block;
  opacity: 0;
  transform: translateX(22px);
  animation: iosNotifTextSlide 0.38s cubic-bezier(0.25, 1.0, 0.5, 1) 1.0s forwards;
  
}

/* ── Value wrapper: clips the rising value text ── */
.rm-card-value-wrap {
  overflow: hidden;
}

/* ── Value (phone number): fades up from below ── */
.rm-card-value {
  font-size: 10px;
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: iosNotifValueRise 0.42s cubic-bezier(0.25, 1.0, 0.5, 1) 1.12s forwards;
  
}

/* ── Hint wrapper: clips the rising hint text ── */
.rm-card-hint-wrap {
  overflow: hidden;
  width: 100%;
}

/* ── Hint text: fades up last, slowest ── */
.rm-card-hint {
  border-radius: 7.644px;
  border: 1px solid rgba(13, 13, 13, 0.80);
  background: #FFF;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  opacity: 0;
  transform: translateY(10px);
  animation: iosNotifHintRise 0.4s cubic-bezier(0.25, 1.0, 0.5, 1) 1.28s forwards;
  
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  gap: 5px;
}


/* Card: squished at top, springs open downward — iOS pill expand */
@keyframes iosNotifCardIn {
  0% {
    opacity: 0;
    transform: scaleY(0.3) scaleX(0.88) translateY(-12px);
  }
  40% {
    opacity: 1;
  }
  70% {
    transform: scaleY(1.04) scaleX(1.01) translateY(2px);
  }
  85% {
    transform: scaleY(0.98) scaleX(0.998) translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) scaleX(1) translateY(0);
  }
}

/* Icon: tiny pop with big overshoot bounce */
@keyframes iosNotifIconPop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    opacity: 1;
    transform: scale(1.18);
  }
  80% {
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Label: slides in from the right within its clipped wrapper */
@keyframes iosNotifTextSlide {
  0% {
    opacity: 0;
    transform: translateX(22px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Value: rises up from below within its clipped wrapper */
@keyframes iosNotifValueRise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hint: same as value but slower + more delayed */
@keyframes iosNotifHintRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero content staggered entrance ── */
.hero-content .hero-title {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s ease 0.1s forwards;
}

.hero-content .hero-desc {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s ease 0.25s forwards;
}

.hero-content .account-active-badge {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.55s ease 0.4s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mascot bounce-in ── */
.mascot-entry {
  opacity: 0;
  transform: translateY(30px) scale(0.93);
  animation: mascotBounceIn 0.7s cubic-bezier(0.34, 1.25, 0.64, 1) 0.2s forwards;
}

@keyframes mascotBounceIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-brand-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  background: #D6F236;
  color: #0D0D0D;
  line-height: normal;
  border: none;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  /* opacity: 0;
    transform: scale(0.4);
  animation: iosNotifIconPop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards; */
  
}

.btn-brand-new:hover {
  background: #222;
  color: var(--lime);
}

.btn-brand-new span, .btn-brand-new svg {
  opacity: 0;
  transform: translateY(10px);
  animation: iosNotifHintRise 0.4s cubic-bezier(0.25, 1.0, 0.5, 1) 1.28s forwards;
  
}

.info-card-wrapper {
  border-radius: 10.358px;
  border: 1px solid #0D0D0D;
  background: #FFF;
  display: flex;
  padding: 15.538px 20.717px 10.358px 20.717px;
  flex-direction: row;
  align-items: center;
  gap: 15.538px;
  align-self: stretch;
  justify-content: space-around;
  transform-origin: top center;
  /* opacity: 0; */
  /* transform: scaleY(0.4) scaleX(0.92) translateY(-10px); */
  /* animation: iosNotifCardIn 0.52s cubic-bezier(0.28, 1.36, 0.52, 1) 0.5s forwards; */
  
}

.vertical-line {
  background: rgba(13, 13, 13, 0.60);
  width: 1px;
  height: 70px;
  }

.info-card-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.info-card-icon {
  display: flex;
width: 28px;
height: 28px;
padding: 3.277px 2.621px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6.554px;
aspect-ratio: 1/1;
border-radius: 17.04px;
background: rgba(214, 242, 54, 0.40);
opacity: 0;
  transform: translateY(12px);
  animation: iosNotifValueRise 0.42s cubic-bezier(0.25, 1.0, 0.5, 1) 1.12s forwards;
  
}

.info-card-icon svg {
  width: 15px;
  height: 15px;
}

.info-card-content {
  color: #0D0D0D;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 9.889px */
  letter-spacing: -0.066px;
  opacity: 0;
  transform: translateX(22px);
  animation: iosNotifTextSlide 0.38s cubic-bezier(0.25, 1.0, 0.5, 1) 1.0s forwards;
  
}

.username-card,
.rm-card,
.info-card-wrapper,
.username-card-label,
.username-card-value,
.username-card-hint,
.info-card-content,
.btn-brand-new,
.btn-brand-new span {
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Inner pages */
.inner-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}.btn-kwik-dark,.btn-kwik-lime{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 24px;border-radius:10px;font-weight:700;text-decoration:none;border:1px solid #111}.btn-kwik-dark{background:#111;color:#d6f236}.btn-kwik-dark:hover{color:#fff}.btn-kwik-lime{background:#d6f236;color:#111}.btn-kwik-lime:hover{background:#c5e322;color:#111}.platform-strip{padding:22px 0;background:#0d0d0d;color:#fff}.platform-strip .platform-links{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}.platform-strip a{color:#fff;text-decoration:none;font-weight:600}.platform-strip i{color:#d6f236;margin-right:8px}.page-section{padding:84px 0}.page-section.alt{background:#f7f7f5}.page-kicker{display:inline-flex;background:#d6f236;border-radius:999px;padding:6px 12px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.page-heading{font-size:clamp(2rem,4vw,3.25rem);font-weight:750;line-height:1.05;letter-spacing:-.045em}.page-lead{color:#666;max-width:680px;font-size:1.05rem}.kwik-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.kwik-card{background:#fff;border:1px solid #e5e5e2;border-radius:18px;padding:26px;height:100%;box-shadow:0 12px 32px rgba(0,0,0,.035)}.kwik-card.dark{background:#111;color:#fff;border-color:#222}.kwik-card .card-num{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#efffb0;font-weight:800;margin-bottom:18px}.kwik-card h3{font-size:1.15rem;font-weight:750}.kwik-card p{margin:0;color:#696969}.kwik-card.dark p{color:#bbb}.stat-band{background:#111;color:#fff;border-radius:24px;padding:42px}.stat-band .stat-value{font-size:clamp(2rem,4vw,4.5rem);color:#d6f236;font-weight:800;letter-spacing:-.05em}.rule-list{counter-reset:rules;display:grid;gap:14px}.rule-row{counter-increment:rules;display:grid;grid-template-columns:48px 1fr;gap:16px;align-items:start;padding:20px;border-bottom:1px solid #ddd}.rule-row:before{content:counter(rules,decimal-leading-zero);font-weight:800;color:#8ca000}.faq-clean .accordion-item{border:1px solid #e5e5e2;border-radius:12px!important;margin-bottom:12px;overflow:hidden}.faq-clean .accordion-button{font-weight:700;padding:20px}.faq-clean .accordion-button:not(.collapsed){background:#111;color:#fff;box-shadow:none}.cta-lime{background:#d6f236;border-radius:26px;padding:62px 30px;text-align:center}.download-badges{display:flex;gap:10px;flex-wrap:wrap}.download-badges a{display:inline-flex;align-items:center;gap:8px;background:#111;color:#fff;text-decoration:none;padding:12px 18px;border-radius:10px}.market-chip{display:inline-flex;background:#efffb0;padding:5px 9px;border-radius:999px;font-size:11px;font-weight:800;margin-bottom:14px}.security-list{list-style:none;padding:0;margin:0;display:grid;gap:14px}.security-list li:before{content:'✓';display:inline-grid;place-items:center;width:22px;height:22px;background:#d6f236;border-radius:50%;margin-right:10px;font-weight:800}.notice-card{background:#fff9db;border:1px solid #f0dc74;border-radius:14px;padding:18px}.auth-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:26px}.auth-trust>div{border:1px solid #e6e6e3;border-radius:14px;padding:16px;text-align:center;background:#fff}.password-rules{display:grid;grid-template-columns:1fr 1fr;gap:7px;font-size:.78rem;margin:-4px 0 18px;color:#666}.password-rules span:before{content:'○';margin-right:5px}.password-rules span.valid{color:#568000}.password-rules span.valid:before{content:'●'}
@media(max-width:991px){.page-section{padding:60px 0}.kwik-grid{grid-template-columns:1fr 1fr}.platform-strip .platform-links{justify-content:center}.auth-trust{grid-template-columns:1fr 1fr}}
@media(max-width:575px){.kwik-grid{grid-template-columns:1fr}.stat-band{padding:28px 20px}.inner-hero-actions{justify-content:center}.page-heading{font-size:2.15rem}.auth-trust{grid-template-columns:1fr}.cta-lime{padding:42px 18px}}
.tradebit-logo-mark{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#111;color:#d6f236;font-size:21px;font-weight:900;line-height:1}.tradebit-logo-text{color:#111;font-size:18px;font-weight:800;letter-spacing:.045em;vertical-align:middle;margin-left:8px}.footer-brand-link{text-decoration:none}.tradebit-art{display:block;object-fit:contain;mix-blend-mode:multiply}.tradebit-art-hero{max-height:590px;width:100%;object-position:center bottom}.tradebit-art-wide{max-height:500px;object-position:center bottom}.tradebit-auth-art{width:100%;max-height:330px;object-fit:contain;mix-blend-mode:multiply}.hero-section .tradebit-art{filter:saturate(.96) contrast(1.02)}
@media(max-width:991px){.tradebit-art-hero,.tradebit-art-wide{max-height:440px}.tradebit-logo-text{font-size:16px}}
@media(max-width:575px){.tradebit-art-hero,.tradebit-art-wide{max-height:360px}.tradebit-logo-mark{width:30px;height:30px;font-size:18px}.tradebit-logo-text{font-size:14px}}

/* Reference-faithful layout corrections */
.hero-section{padding-top:76px;overflow:hidden;background:#fff}.hero-section>.container-xl>.row{min-height:590px}.hero-section .pb-100,.hero-section .pb-120,.hero-section .pb-200{padding-bottom:72px}.negative-img{margin-bottom:0!important;position:relative;z-index:1!important}.home-hero .tradebit-art-hero{height:590px;max-height:590px;width:auto!important;max-width:100%;object-fit:contain;object-position:center bottom;mix-blend-mode:normal;filter:none}.hero-strip{position:relative;z-index:4;padding:14px 0}.hero-strip .container-xl{overflow:hidden}.hero-strip .d-flex{flex-wrap:nowrap!important;overflow-x:auto;scrollbar-width:none;justify-content:center!important}.hero-strip .d-flex::-webkit-scrollbar{display:none}.features-section{padding:78px 0}.mgt-wrap{overflow-x:auto;border-radius:18px}.mgt-table{min-width:760px;border-collapse:separate!important;border-spacing:0!important;background:#fff}.mgt-table th{background:#111;color:#fff;font-size:15px;font-weight:750;padding:18px 22px;text-align:left;border:0}.mgt-table th.text-center{text-align:center}.mgt-table td{font-size:15px;font-weight:600;padding:16px 22px;border-bottom:1px solid #e3e3e0;background:#fff}.mgt-table tr:last-child td{border-bottom:0}.mgt-table td.text-center{text-align:center}.mgt-table tbody tr:hover td{background:#f8fadf}.tradebit-art{mix-blend-mode:normal}.zero-brokerage-section .tradebit-art,.margin-section .tradebit-art{border-radius:26px;mix-blend-mode:multiply}.navbar{min-height:72px;border-bottom:1px solid #eee}.navbar .container-xl{max-width:1320px}.navbar .nav-link{font-weight:600}.section-title,.page-heading{font-family:inherit}
@media(max-width:991px){.hero-section{padding-top:48px}.hero-section>.container-xl>.row{min-height:auto}.hero-section .pb-100,.hero-section .pb-120,.hero-section .pb-200{padding-bottom:32px}.home-hero .tradebit-art-hero{height:430px;max-height:430px}.hero-strip .d-flex{justify-content:flex-start!important}.features-section{padding:58px 0}.mgt-table th,.mgt-table td{padding:14px 16px}}
@media(max-width:575px){.hero-section{padding-top:36px}.home-hero .tradebit-art-hero{height:360px;max-height:360px}.hero-section .row{--bs-gutter-x:0}.hero-title{font-size:38px!important;line-height:1.02!important}.hero-subtitle{font-size:15px;line-height:1.45}.hero-strip{padding:12px 0}.mgt-table{min-width:680px}.mgt-table th,.mgt-table td{font-size:13px;padding:12px 14px}}
.tradebit-art:not(.tradebit-art-hero),.tradebit-app-phone{-webkit-mask-image:radial-gradient(ellipse 72% 74% at center,#000 58%,transparent 100%);mask-image:radial-gradient(ellipse 72% 74% at center,#000 58%,transparent 100%)}.tradebit-app-section{background:#0d0d0d;padding:72px 0;overflow:hidden}.tradebit-app-phone{width:100%;max-width:520px;max-height:520px;object-fit:contain;mix-blend-mode:screen}.app-rating-row strong{display:block;color:#d6f236;font-size:28px}.app-rating-row span{display:block;color:#999;font-size:12px}.market-tabs{display:flex;gap:6px;background:#f2f2f0;padding:6px;border-radius:999px;overflow:auto}.market-tabs button{border:0;background:transparent;border-radius:999px;padding:9px 18px;font-size:12px;font-weight:750;white-space:nowrap}.market-tabs button.active{background:#111;color:#fff}.market-chart-card{margin-top:18px;background:#f7f7f5;border:1px solid #e4e4e1;border-radius:18px;padding:26px}.market-ohlc{display:flex;gap:24px;flex-wrap:wrap}.market-ohlc span{display:flex;flex-direction:column;color:#999;font-size:10px}.market-ohlc b{color:#111;font-size:13px}.chart-lines{height:210px;margin-top:24px;display:flex;flex-direction:column;justify-content:space-around;background:linear-gradient(155deg,transparent 0 54%,rgba(93,175,70,.14) 55%,transparent 56%)}.chart-lines i{height:1px;background:#e5e5e2}.ticker-row{display:flex;gap:34px;overflow:hidden;padding:16px 6px;font-size:12px;white-space:nowrap}.ticker-row em{color:#12944a;font-style:normal}.ticker-row em.down{color:#d44}.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.testimonial-grid article{background:#111;color:#fff;border-radius:20px;padding:28px;min-height:220px;display:flex;flex-direction:column}.testimonial-grid article p{font-size:17px;line-height:1.55;flex:1}.testimonial-grid article span{color:#888;font-size:12px}.review-stars{color:#d6f236;letter-spacing:3px;margin-bottom:18px}.global-trust-card{background:#111;color:#fff;border-radius:28px;padding:58px;display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;align-items:center}.global-trust-card h2{font-size:clamp(2.2rem,4vw,4rem);font-weight:800;line-height:1.02;margin:18px 0}.global-trust-card mark{background:transparent;color:#d6f236;padding:0}.global-trust-card p{color:#aaa;max-width:420px}.country-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.country-grid>div{border:1px solid #333;border-radius:14px;padding:18px;display:grid;grid-template-columns:auto 1fr;gap:4px 10px}.country-grid>div>span{grid-row:1/3;font-size:20px}.country-grid small{color:#aaa}
@media(max-width:991px){.testimonial-grid{grid-template-columns:1fr}.global-trust-card{grid-template-columns:1fr;padding:38px}.tradebit-app-phone{max-height:420px}}
@media(max-width:575px){.tradebit-app-section{padding:52px 0}.market-ohlc{gap:12px}.market-chart-card{padding:18px}.chart-lines{height:150px}.global-trust-card{padding:28px 20px}.country-grid{grid-template-columns:1fr}.testimonial-grid article{min-height:190px}}
.margin-details-flow{display:flex;flex-direction:column}.rate-heading{order:1}.rate-table{order:2}.rate-notes{order:3}.calculator-heading{order:4}.calculator-cards{order:5}.limits-heading{order:6}.limits-table{order:7}
.auth-navbar{min-height:64px;border-bottom:1px solid #eee}.auth-footer{padding:0 0 24px;background:#fff}.auth-security-bar{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;padding:22px 28px;border:1px solid #ececea;border-radius:18px;box-shadow:0 8px 28px rgba(0,0,0,.06)}.auth-security-bar>div{display:flex;align-items:center;justify-content:center;gap:12px}.auth-security-bar i{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;background:#efffb0;font-size:20px}.auth-security-bar span{display:flex;flex-direction:column}.auth-security-bar small{color:#666}.auth-legal{display:flex;justify-content:space-between;gap:20px;padding-top:28px;font-size:12px;color:#555}.auth-legal a{color:#333;text-decoration:none;margin-left:22px}
@media(max-width:767px){.auth-security-bar{grid-template-columns:1fr 1fr;padding:18px}.auth-security-bar>div{justify-content:flex-start}.auth-legal{flex-direction:column;text-align:center}.auth-legal a{margin:0 8px}}
.auth-benefits{list-style:none;padding:0;margin:20px 0;display:grid;gap:14px}.auth-benefits li{display:flex;align-items:center;gap:14px}.auth-benefits i{width:46px;height:46px;border-radius:9px;background:#eafe75;display:grid;place-items:center;font-size:20px}.auth-benefits span{display:flex;flex-direction:column}.auth-benefits small{color:#555;margin-top:3px}.auth-risk{display:inline-flex;align-items:center;gap:7px;background:#fbffe5;border-radius:999px;padding:8px 13px;font-size:12px;margin-top:10px}.signup-section{align-items:center}.signup-left{padding-top:18px;padding-bottom:18px}.tradebit-auth-art{max-height:250px!important;margin:0 auto}
