@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Poppins:wght@500;600;700;800&display=swap");

:root {
  --bg: #07060b;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #d139d3;
  --accent-strong: #b100d1;
  --yellow: #ffe05c;
  --card: #ffffff;
  --card-ink: #3b2141;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --grad-text: linear-gradient(90deg, #ff9b4b, #d25dff);
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

.hero,
.cta {
  position: relative;
  overflow: hidden;
}

.hero {
  background: url("assets/CB-FE-01-Background-01 1.png") center/cover no-repeat;
}

.hero::before,
.cta::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px 420px at 12% 25%, rgba(180, 100, 200, 0.55), transparent 60%),
    radial-gradient(520px 520px at 88% 70%, rgba(255, 160, 90, 0.25), transparent 60%),
    linear-gradient(120deg, rgba(10, 10, 14, 0.98), rgba(8, 5, 12, 0.95));
  z-index: 0;
}

.hero::after,
.cta::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 20px);
  opacity: 0.12;
  transform: rotate(-6deg);
  z-index: 0;
}

.hero > *,
.cta > * {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.offer-bar {
  background: linear-gradient(90deg, #b86bff, #a157ff);
}

.offer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.offer-tag {
  color: #ffd27a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.offer-text {
  font-size: 14px;
  color: #ffffff;
}

.offer-btn {
  background: linear-gradient(180deg, #ffb969, #ff7a49);
  border: none;
  color: #ffffff;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* animation */
  animation: pulseBlink 1.5s infinite;
}

/* Keyframes */
@keyframes pulseBlink {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 73, 0.7);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 122, 73, 0);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 122, 73, 0);
    opacity: 1;
  }
}


.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 90px;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.hero-brand {
  margin-bottom: 16px;
}

.logo-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  color: #2a1b3b;
  border-radius: 6px;
  padding: 6px 18px 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  justify-content: center;
}

.logo-img {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-main {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #3443b2;
}

.logo-accent {
  color: #29a66d;
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1f1f1f;
  text-transform: uppercase;
  margin-top: -2px;
}

.logo-card span {
  opacity: 0;
}

.hero-kicker {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-badge {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-sebi {
    font-size: 48px;
    font-weight: 700;
    margin-top: 12px;
    color: #e9e0f3;
}

.hero-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 59px;
  font-weight: 800;
  margin: 14px 0 10px;
  line-height: 1.08;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--muted);
}

.hero-fine {
  font-size: 13px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-fine.strong {
  font-weight: 700;
  color: #ffffff;
}

.hero-panels {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 900px;
}

.trade-card {
  border-radius: 12px;
  padding: 130px 16px;
  color: #e9e0f3;
  text-align: left;
  height: auto;
  background-image: url("assets/Scrolling.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.trade-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tab {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.tab.active {
  background: rgba(189, 113, 255, 0.5);
  color: #ffffff;
}

.trade-stats {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.trade-stats strong {
  display: block;
  font-size: 12px;
  color: #9be3bf;
}

.trade-stats .positive {
  color: #7ef0ad;
}

.trade-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.trade-info {
  display: flex;
  flex-direction: column;
}

.trade-name {
  font-weight: 700;
  color: #ffffff;
}

.trade-profit {
  color: #7ef0ad;
  font-weight: 700;
}

.feature-panel {
  
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  
 
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: #e6d9f0;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d78cff, #8a43ff);
  box-shadow: 0 6px 12px rgba(106, 55, 163, 0.6);
  position: relative;
  flex-shrink: 0;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.cta {
  padding: 130px 20px 140px;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-card {
  position: relative;
  width: 420px;
  max-width: 92vw;
}

.person {
  position: absolute;
  top: -140px;
  left: 50%;
  width: 230px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 120px 120px 60px 60px;
  background-image: url("assets/steptodown.com676939 1.png");
  background-size: cover;
  background-position: center top;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  animation: float 4s ease-in-out infinite;
}

.form-card {
  position: relative;
  padding: 46px 32px 34px;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--card-ink);
  text-align: center;
}

.form-card::before,
.form-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(243, 204, 248, 0.6);
}

.form-card::before {
  width: 140px;
  height: 140px;
  top: 16px;
  left: -30px;
}

.form-card::after {
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: -30px;
}

.form-card h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.form-pill {
  margin: 14px auto 18px;
  padding: 7px 12px;
  border-radius: 9px;
  border: 1.5px solid #e889e0;
  font-size: 13px;
  font-weight: 600;
  background: #ffffff;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.cta-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #ec74dd;
  font-size: 14px;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: #5c3a66;
  background: #ffffff;
  outline: none;
}

.cta-form input::placeholder {
  color: #ad92b4;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6d4a74;
  border-bottom: 2px solid #6d4a74;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.cta-form select {
  appearance: none;
  background-image: none;
}

.cta-form button {
  margin-top: 6px;
  background: var(--yellow);
  border: none;
  color: #1a1a1a;
  font-weight: 800;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(211, 170, 65, 0.35);
}

.cta-submit {
  margin-top: 6px;
  background: var(--yellow);
  border: none;
  color: #1a1a1a;
  font-weight: 800;
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(211, 170, 65, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-yellow {
  margin-top: 18px;
  background: var(--yellow);
  border: none;
  color: #1a1a1a;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
  border-radius: 16px;
  padding: 12px 34px;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(211, 170, 65, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-block {
  text-align: center;
  max-width: 520px;
  color: #f0e6f8;
}

.trust-block h3 {
  color: #f0a743;
  letter-spacing: 1.2px;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.trust-block p {
  font-size: 20px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.trust-block p.trust {
  font-weight: 600 !important;
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateY(1px);
}

.wave-divider path {
  fill: #ffffff;
}

.plan-section {
  background: #ffffff;
  color: var(--card-ink);
  padding: 90px 0 70px;
  position: relative;
  overflow: visible;
  text-align: center;
}

.swirl-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  pointer-events: none;
  z-index: 5;
}

.swirl-arrow {
  width: 120px;
  height: auto;
  display: block;
}

.swirl-arrow path {
  fill: none;
  stroke: #b365ff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-kicker {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #3b2141;
  margin-bottom: 10px;
}

.plan-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #d10ad5;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.plan-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 360px;
  height: 4px;
  background: linear-gradient(90deg, #ff9862, #d10ad5);
  border-radius: 4px;
}

.price-pill {
  display: block;
  width: fit-content;
  padding: 14px 46px;
  border-radius: 12px;
  background: #dbc7ff;
  color: #7b2bb8;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 10px 18px rgba(177, 144, 226, 0.35);
  margin: 8px auto 26px;
}

.banner-card {
  width: 720px;
  max-width: 92vw;
  margin: 0 auto 34px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background: rgba(235, 237, 250, 0.9);
  border: 1px solid rgba(35, 36, 48, 0.12);
  padding: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 2px solid rgba(76, 229, 95, 0.65);
}

.banner-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 2px solid rgba(76, 229, 95, 0.65);
}

.banner-card .banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-card .banner-text strong {
  font-size: 26px;
}

.banner-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffd657;
  color: #1f1f1f;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
}

.banner-option {
  justify-content: flex-end;
  text-align: right;
  background-image: url("assets/kashish joshi landing page (1) 1.png");
}

.banner-option .banner-text strong {
  color: #ffd35c;
}

.banner-future {
  justify-content: center;
  text-align: center;
  background-image: url("assets/kashish joshi landing page (1) 2.png");
}

.banner-future .banner-text strong {
  font-size: 20px;
}

.banner-highlight {
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
}

.banner-cash {
  justify-content: flex-start;
  text-align: left;
  background-image: url("assets/kashish joshi landing page (1) 2 (1).png");
}

.banner-cash .banner-text strong {
  font-size: 26px;
  color: #1f1f1f;
}

.banner-cash .banner-text span {
  color: #1f1f1f;
}

.banner-stock {
  justify-content: flex-start;
  text-align: left;
  background-image: url("assets/kashish joshi landing page (1) 2 (2).png");
}

.banner-stock .banner-text strong {
  font-size: 22px;
  color: #79ff52;
}

.banner-stock .banner-text span {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}

.banner-stp {
  justify-content: flex-start;
  text-align: left;
  background-image: url("assets/kashish joshi landing page (1) 2 (4).png");
}

.banner-stp .banner-text strong {
  font-size: 22px;
  color: #f7c443;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px 30px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #5a2b71;
  line-height: 1.4;
}

.benefit-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #5a1d8e;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px;
  box-shadow: 0 6px 12px rgba(94, 36, 156, 0.35);
  flex-shrink: 0;
}

.icon-slot {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8'/><circle cx='12' cy='12' r='3'/><path d='M12 2v4'/></svg>");
}

.icon-support {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12a8 8 0 0 1 16 0'/><rect x='2' y='12' width='4' height='6' rx='2'/><rect x='18' y='12' width='4' height='6' rx='2'/><path d='M8 18c0 2 8 2 8 0'/></svg>");
}

.icon-news {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='3' width='16' height='18' rx='2'/><path d='M7 7h10'/><path d='M7 11h10'/><path d='M7 15h6'/></svg>");
}

.icon-entry {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12h10'/><path d='M10 8l4 4-4 4'/><rect x='14' y='4' width='6' height='16' rx='2'/></svg>");
}

.icon-stop {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3l7 4v5c0 4-3 7-7 9-4-2-7-5-7-9V7l7-4z'/><path d='M9 12l2 2 4-4'/></svg>");
}

.icon-expiry {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='17' rx='2'/><path d='M3 9h18'/><path d='M8 2v4'/><path d='M16 2v4'/><circle cx='9' cy='13' r='1'/><circle cx='13' cy='13' r='1'/><circle cx='17' cy='13' r='1'/></svg>");
}

.icon-risk {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v18'/><path d='M6 7h12'/><path d='M6 7l-3 5h6l-3-5z'/><path d='M18 7l-3 5h6l-3-5z'/></svg>");
}

.dotted-call {
  margin: 60px auto 0;
  max-width: 980px;
  border: 3px dotted #f0c7a3;
  border-radius: 16px;
  padding: 54px 44px;
  color: #4a2b55;
  background: #ffffff;
}

.dotted-call h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #d10ad5;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.dotted-call p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a2b55;
}

.dotted-call .btn-yellow {
  margin-top: 26px;
  background: #ffe05c;
  color: #1a1a1a;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 800;
  padding: 18px 66px;
  border-radius: 12px;
  box-shadow: 0 12px 0 rgba(211, 170, 65, 0.35);
}

.soft-section {
  background: linear-gradient(90deg, #dce6f6, #e4f1e6);
  padding: 90px 0 110px;
  text-align: center;
  position: relative;
  overflow: visible;
  color: #3a2446;
}

.soft-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #2e3bcd;
}

.soft-sub {
  margin-top: 6px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #3b2141;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.soft-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, #ff9b6a, #d10ad5);
  border-radius: 4px;
}

.soft-heading {
  margin: 40px 0 18px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #3b2141;
}



.image-card {
  width: 720px;
  max-width: 92vw;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: rgba(235, 237, 250, 0.9);
  border: 1px solid rgba(35, 36, 48, 0.12);
  padding: 14px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 2px solid rgba(76, 229, 95, 0.65);
}

.card-analyst {
  background-image: url("assets/kashish joshi landing page (2).png");
}

.card-risk {
  background-image: url("assets/kashish joshi landing page (3) (1).png");
}

.card-support {
  background-image: url("assets/kashish joshi landing page (4).png");
}

.plan-stack {
  background: #ffffff;
  color: var(--card-ink);
  padding: 90px 0 80px;
  text-align: center;
}

.plan-block {
  margin-bottom: 70px;
}

.plan-block:last-child {
  margin-bottom: 0;
}

.trust-callout {
  background: #ffffff;
  color: var(--card-ink);
  padding: 70px 0 90px;
  text-align: center;
}

.trust-callout .dotted-call {
  margin: 0 auto;
}

.dotted-large {
  max-width: 820px;
  margin: 0 auto;
}

.dark-cta {
  background: linear-gradient(180deg, #2b1443 0%, #2a0c33 60%, #2a0b2d 100%);
  padding: 80px 0 110px;
  text-align: center;
  position: relative;
  overflow: visible;
  color: #ffffff;
}

.dark-cta h2 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #ff9b4b, #d45cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-sub {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.cta-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #ff9b6a, #c95cff);
  border-radius: 4px;
}

.cta-poster {
  width: 720px;
  max-width: 92vw;
  margin: 34px auto 0;
  border-radius: 10px;
  background: rgba(235, 237, 250, 0.9);
  border: 1px solid rgba(35, 36, 48, 0.12);
  padding: 14px;
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
}

.cta-poster::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  border: 2px solid rgba(76, 229, 95, 0.65);
  background-image: url("assets/kashish joshi landing page (1) 2 (3).png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.poster-strip {
  position: relative;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
  z-index: 1;
  opacity: 0;
}

.poster-body {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 18px;
  z-index: 1;
  opacity: 0;
}

.poster-btn {
  position: relative;
  margin: 0 auto;
  padding: 8px 18px;
  border-radius: 18px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  text-decoration: none;
}

.poster-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 12px;
}

.research-section {
  background: linear-gradient(90deg, #dbe6f6, #e4f1e6);
  padding: 90px 0 110px;
  text-align: center;
  color: #3a2446;
}

.research-section .image-card {
  margin-bottom: 46px;
}

.research-section .image-card:last-of-type {
  margin-bottom: 0;
}

.research-section h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}

.card-online {
  background-image: url("assets/kashish joshi landing page (6).png");
}

.card-technical {
  background-image: url("assets/kashish joshi landing page (7).png");
  margin-bottom: 0;
}

.testimonials-section {
  background: linear-gradient(180deg, #f4e1f0, #f7dfe8);
  padding: 90px 0 110px;
  text-align: center;
  position: relative;
  overflow: visible;
  color: #3a2446;
}

.testi-kicker {
  font-size: 30px;
  color: #4a2b55;
  margin-bottom: 6px;
  font-weight: 700;
}

.testi-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #b145ff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testi-sub {
  font-size: 30px;
  font-weight: 700;
  color: #3a2446;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 34px;
}

.testi-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, #ff9b6a, #c95cff);
  border-radius: 4px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 26px 30px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #db8ef4;
  padding: 16px 18px 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #3a2446;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 13px;
  color: #5a3b6d;
  line-height: 1.5;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1c6ff, #c07bff);
  border: 2px solid #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
}

.avatar-james {
  background-image: url("assets/avatar-1.png"), linear-gradient(135deg, #f1c6ff, #c07bff);
}

.avatar-olivia {
  background-image: url("assets/avatar-2.png"), linear-gradient(135deg, #fdd3e1, #ffb5d4);
}

.avatar-richard {
  background-image: url("assets/avatar-3.png"), linear-gradient(135deg, #ffd6b3, #ffb86b);
}

.avatar-emma {
  background-image: url("assets/avatar-4.png"), linear-gradient(135deg, #c9f0ff, #8cd1ff);
}

.site-footer {
  background: #2a0d3f;
  color: #ffffff;
  text-align: center;
  padding: 70px 0 60px;
}

.footer-disclaimer {
  margin-top: 34px;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.footer-disclaimer h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
  z-index: 999;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-float:hover {
  filter: brightness(0.95);
}

.site-footer h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin: 22px 0 18px;
}

.footer-logo .logo-card {
  padding: 8px 24px 6px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.footer-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  line-height: 1.4;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  white-space: nowrap;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-sebi {
    font-size: 28px;
  }

  .plan-title {
    font-size: 32px;
  }

  .plan-title::after {
    width: 260px;
  }

  .price-pill {
    font-size: 18px;
    padding: 12px 34px;
  }

  .dotted-call {
    padding: 44px 24px;
  }

  .dotted-call .btn-yellow {
    font-size: 30px;
    padding: 16px 44px;
  }

  .soft-title {
    font-size: 30px;
  }

  .soft-sub {
    font-size: 24px;
  }

  .hero-panels {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .offer-inner {
    gap: 10px;
  }

  .offer-btn {
    width: 100%;
  }

  .banner-card {
    height: 160px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .cta-poster {
    width: 100%;
    max-width: 520px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .benefits {
    grid-template-columns: 1fr;
  }

  .hero-sebi {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .soft-title {
    font-size: 24px;
  }

  .soft-sub {
    font-size: 20px;
  }

  .soft-heading {
    font-size: 22px;
  }

  .testi-kicker {
    font-size: 18px;
  }

  .testi-sub {
    font-size: 16px;
  }

  .cta-sub {
    font-size: 18px;
  }

  .plan-title::after {
    width: 140px;
  }

  .poster-strip {
    font-size: 12px;
  }

  .poster-body {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 36px 16px 70px;
  }

  .trade-card {
    padding: 100px 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-sebi {
    font-size: 20px;
  }

  .cta-card {
    width: 100%;
  }

  .form-card {
    padding: 42px 24px 30px;
  }

  .person {
    width: 150px;
    height: 96px;
    top: -70px;
  }

  .banner-card {
    height: 150px;
  }

  .soft-title {
    font-size: 20px;
  }

  .soft-sub {
    font-size: 18px;
  }

  .soft-heading {
    font-size: 20px;
  }

  .cta-poster {
    padding: 16px 14px 20px;
  }

  .testi-title {
    font-size: 22px;
  }

  .testi-kicker {
    font-size: 16px;
  }

  .testi-sub {
    font-size: 15px;
  }

  .testi-sub::after {
    width: 140px;
  }
}
