/* ══════════════════════════════════
   KWIK TRADE – Main Stylesheet
   ══════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;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: manipulation;
  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 16px;
  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;
}

.btn-open-account::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-open-account:hover:after {
    transform: scale(4);
}


.btn-open-account:hover {
   border-color: #666666;
  background: var(--dark);
  color: var(--lime);
}

.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(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 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;
}

.btn-start::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-start:hover:after {
    transform: scale(4);
}

.btn-start:hover {
    border-color: #666666;
}

.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;
}
.zb-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 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;
  background: var(--dark);
  color: var(--lime);
}

.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;
}

.margin-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 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;
  background: var(--dark);
  color: var(--lime);
}

.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;
}
.gt-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gt-cta-btn:hover::after {
    transform: scale(4);
}

.gt-cta-btn:hover {
  border-color: #666666;
  color: var(--dark);
  border-color: #666666;
  background: 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;
}

.cta-btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 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;
    background: #292929;
}

.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;
}

.cta-btn-ghost::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 242, 54, 0.25) 0%, rgba(214, 242, 54, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.cta-btn-ghost:hover:after {
    transform: scale(4);
}

/* .cta-btn-ghost:hover {
  border-color: var(--dark);
  background: transparent;
  color: var(--dark);
  transform: translateY(-2px);
} */

.cta-btn-ghost:hover {
    border-color: #666666;
    background: var(--lime);
}

/* ══════════════════════════════════
   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;
}

.navbar-brand img {
  height: 42px !important;
  width: auto !important;
  max-width: 100% !important;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-link img {
  height: 48px !important;
  width: auto !important;
  max-width: 100% !important;
}

.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;
}

.btn-brand-light:hover,
.btn-brand-light:focus {
  color: var(--dark);
  border-color: 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;
}

/* 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 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.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%;
}

/* 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;
  flex: 0 0 50%;
  width: 50%;
}

.signup-scroll-left a {
  display: block;
  width: 100%;
  height: 100%;
}
 
.signup-scroll-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  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;
}
 
