/* Scoped styles for resources/views/casebinarytrading.blade.php */
.binary-studies-page *,
.binary-studies-page *::before,
.binary-studies-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.binary-studies-page {
  --pink: #fd468e;
  --violet: #4a5df5;
  --gradient: linear-gradient(135deg, #fd468e 0%, #4a5df5 100%);
  --gradient-soft: linear-gradient(135deg, rgba(253, 70, 142, 0.08) 0%, rgba(74, 93, 245, 0.08) 100%);
  --white: #ffffff;
  --off-white: #f9f9fb;
  --border: #ebebf0;
  --text-primary: #0d0d14;
  --text-secondary: #5a5a72;
  --text-muted: #9898ae;
  --shadow-sm: 0 1px 3px rgba(13, 13, 20, 0.06), 0 1px 2px rgba(13, 13, 20, 0.04);
  --shadow-md: 0 4px 16px rgba(13, 13, 20, 0.08), 0 2px 6px rgba(13, 13, 20, 0.04);
  --shadow-lg: 0 12px 40px rgba(13, 13, 20, 0.10), 0 4px 12px rgba(13, 13, 20, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
}

.binary-trading-case-page {
  font-family: 'Sen', sans-serif;
  background: #ffffff;
  color: #0d0d14;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.binary-studies-page .hero-scroll {
  margin-top: 16px;
  opacity: 0.4;
  animation: binaryScrollBounce 2.2s ease-in-out infinite;
}

.binary-studies-page .hero-scroll svg {
  width: 22px;
  height: 22px;
}

@keyframes binaryScrollBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

.binary-studies-page

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 140px 5% 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.binary-studies-page .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(253, 70, 142, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(74, 93, 245, 0.06) 0%, transparent 60%);
}

.binary-studies-page .hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

.binary-studies-page .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.binary-studies-page .hero-tag-icon {
  width: 18px;
  height: 18px;
  background: var(--gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.binary-studies-page .hero-tag-icon svg {
  width: 10px;
  height: 10px;
  fill: white;
}

.binary-studies-page h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-primary);
  /* max-width: 820px; */
  margin-bottom: 20px;
}

.binary-studies-page h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page .hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
  font-weight: 400;
}

.binary-studies-page .metrics-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
  width: 100%;
}

.binary-studies-page .metric-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.binary-studies-page .metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.binary-studies-page .metric-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

.binary-studies-page .metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.binary-studies-page .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: white;
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  padding: 15px 36px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253, 70, 142, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.binary-studies-page .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(253, 70, 142, 0.38);
}

.binary-studies-page .cta-btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.binary-studies-page

/* ── SECTIONS ── */
section {
  padding: 96px 5% !important;
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.binary-studies-page h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.binary-studies-page .section-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.binary-studies-page

/* ── CLIENT OVERVIEW ── */
.client-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}

.binary-studies-page .client-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.binary-studies-page .client-text p strong {
  color: var(--text-primary);
  font-weight: 700;
}

.binary-studies-page .client-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(253, 70, 142, 0.15);
  box-shadow: 0 8px 32px rgba(253, 70, 142, 0.08), var(--shadow-md);
  position: relative;
  background: #0d0d14;
}

.binary-studies-page .client-visual svg {
  display: block;
  width: 100%;
}

.binary-studies-page

/* ── PROBLEM ── */
#problem {
  background: var(--off-white);
  max-width: 100%;
  padding: 96px 5%;
}

.binary-studies-page #problem .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.binary-studies-page .problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.binary-studies-page .problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.binary-studies-page .problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(253, 70, 142, 0.4), rgba(253, 70, 142, 0.1));
}

.binary-studies-page .problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(253, 70, 142, 0.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.binary-studies-page .problem-icon svg {
  width: 20px;
  height: 20px;
}

.binary-studies-page .problem-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.binary-studies-page .problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.binary-studies-page .hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.binary-studies-page .hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #000 !important;
  background: #FDF1F8;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  min-height: 30px;
}

.circle-insta {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FD468E 0%, #4A5DF5 100%);
}

.binary-studies-page .hero-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.binary-studies-page .hero-meta-sep {
  color: var(--border);
  font-size: 16px;
  line-height: 1;
}

.binary-studies-page

/* ── GOALS ── */
#goals {
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .goals-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.binary-studies-page .goals-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.binary-studies-page .goals-check-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.binary-studies-page .goals-check-item:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

/* .binary-studies-page .goals-check-item:nth-last-child(-n+2) {
  border-bottom: none;
} */

.binary-studies-page .goals-check-box {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  background: linear-gradient(135deg, rgba(74, 93, 245, 0.12), rgba(253, 70, 142, 0.08));
  border: 1px solid rgba(74, 93, 245, 0.15);
}

.binary-studies-page .goals-check-box svg {
  width: 13px;
  height: 13px;
  stroke: var(--violet);
  stroke-width: 2.5;
  fill: none;
}

.binary-studies-page .goals-check-text {
  flex: 1;
}

.binary-studies-page .goals-check-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.binary-studies-page .goals-check-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.binary-studies-page

/* ── SOLUTION (DARK) ── */
#solution {
  background: #0e0f14;
  max-width: 100%;
  padding: 112px 5%;
  position: relative;
  overflow: hidden;
}

.binary-studies-page #solution .inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.binary-studies-page

/* Ambient background glows */
.sol-bg-glow-left {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 93, 245, 0.14) 0%, transparent 70%);
  top: -120px;
  left: -180px;
  pointer-events: none;
}

.binary-studies-page .sol-bg-glow-right {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 70, 142, 0.10) 0%, transparent 70%);
  bottom: -80px;
  right: -120px;
  pointer-events: none;
}

.binary-studies-page

/* Animated background chart (canvas) */
#sol-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.binary-studies-page

/* Header */
.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a5df5;
  margin-bottom: 18px;
}

.binary-studies-page .sol-eyebrow-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #4a5df5, #fd468e);
  border-radius: 2px;
}

.binary-studies-page .sol-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 72px;
}

.binary-studies-page .sol-title span {
  background: linear-gradient(135deg, #fd468e, #4a5df5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page

/* Steps layout */
.sol-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.binary-studies-page

/* Two-column inner layout */
.sol-layout {
  display: block;
  max-width: 680px;
}

.binary-studies-page

/* Right decorative panel */
.sol-panel {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.binary-studies-page .sol-panel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  transition: background 0.2s;
}

.binary-studies-page .sol-panel-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.binary-studies-page .sol-panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 8px;
}

.binary-studies-page .sol-panel-value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fd468e, #4a5df5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.binary-studies-page .sol-panel-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.binary-studies-page .sol-panel-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 93, 245, 0.3), rgba(253, 70, 142, 0.3));
  border-radius: 1px;
  margin: 4px 0;
}

.binary-studies-page .sol-panel-tech {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 24px;
}

.binary-studies-page .sol-panel-tech-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.binary-studies-page .sol-tech-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.binary-studies-page .sol-tech-row:last-child {
  border-bottom: none;
}

.binary-studies-page .sol-tech-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fd468e, #4a5df5);
}

.binary-studies-page .sol-tech-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.binary-studies-page .sol-tech-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 3px 8px;
}

@media (max-width: 960px) {
  .binary-studies-page .sol-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .binary-studies-page .sol-panel {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .binary-studies-page .sol-panel-card {
    flex: 1;
    min-width: 140px;
  }

  .binary-studies-page .sol-panel-tech {
    width: 100%;
  }
}

.binary-studies-page

/* Animated connector line */
.sol-line-track {
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.binary-studies-page .sol-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #4a5df5, #fd468e);
  height: 0%;
  border-radius: 2px;
  transition: height 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.binary-studies-page .sol-line-fill.animate {
  height: 100%;
}

.binary-studies-page

/* Individual step */
.sol-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 36px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.binary-studies-page .sol-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.binary-studies-page .sol-step:not(:last-child)::after {
  content: '';
  display: none;
  /* handled by .sol-line-track */
}

.binary-studies-page

/* Step number node */
.sol-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: #14151d;
}

.binary-studies-page .sol-num-inner {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fd468e, #4a5df5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page

/* Glow ring on active */
.sol-step.visible .sol-num {
  box-shadow: 0 0 0 4px rgba(74, 93, 245, 0.12), 0 0 20px rgba(74, 93, 245, 0.08);
}

.binary-studies-page .sol-step:nth-child(odd).visible .sol-num {
  box-shadow: 0 0 0 4px rgba(253, 70, 142, 0.12), 0 0 20px rgba(253, 70, 142, 0.08);
}

.binary-studies-page

/* Step content */
.sol-content {
  padding-top: 10px;
}

.binary-studies-page .sol-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.binary-studies-page .sol-step-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.binary-studies-page .sol-step-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 600px;
}

.binary-studies-page .sol-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.binary-studies-page .sol-tag-pink {
  background: rgba(253, 70, 142, 0.12);
  color: #fd468e;
  border: 1px solid rgba(253, 70, 142, 0.2);
}

.binary-studies-page .sol-tag-violet {
  background: rgba(74, 93, 245, 0.12);
  color: #8899ff;
  border: 1px solid rgba(74, 93, 245, 0.2);
}

.binary-studies-page

/* Separator between steps */
.sol-step-sep {
  height: 1px;
  margin: 0 0 0 92px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, transparent 80%);
}

.binary-studies-page

/* Closing line */
.sol-closing {
  text-align: center;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.binary-studies-page .sol-closing-text {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.85);
}

.binary-studies-page .sol-closing-text strong {
  background: linear-gradient(135deg, #fd468e, #4a5df5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page .sol-closing-sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.02em;
}

.binary-studies-page

/* ── RESULTS ── */
#results {
  background: var(--off-white);
  max-width: 100%;
  padding: 96px 5%;
}

.binary-studies-page #results .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.binary-studies-page .result-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.25s;
  overflow: hidden;
  cursor: pointer;
}

.binary-studies-page .result-card.one-time-invest {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(74, 93, 245, 0.03), rgba(253, 70, 142, 0.03)) !important;
}

.binary-studies-page .result-card.one-time-invest .result-icon {
  background: var(--gradient) !important;
}

.binary-studies-page .result-card.one-time-invest .result-icon svg {
  stroke: #fff !important;
}

.binary-studies-page .result-card.one-time-invest p {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.binary-studies-page .result-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: var(--gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.binary-studies-page .result-card:hover::after {
  opacity: 1;
}

.binary-studies-page .result-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-soft);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.binary-studies-page .result-icon svg {
  width: 18px;
  height: 18px;
}

.binary-studies-page .result-card p {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.5;
}

.binary-studies-page

/* ── BEFORE/AFTER ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.binary-studies-page .ba-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.binary-studies-page .ba-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.binary-studies-page .ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.binary-studies-page .ba-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.binary-studies-page .ba-before .ba-header {
  background: #fff5f8;
}

.binary-studies-page .ba-before .ba-dot {
  background: var(--pink);
}

.binary-studies-page .ba-before .ba-label {
  color: var(--pink);
}

.binary-studies-page .ba-after .ba-header {
  background: #f3f4ff;
}

.binary-studies-page .ba-after .ba-dot {
  background: var(--violet);
}

.binary-studies-page .ba-after .ba-label {
  color: var(--violet);
}

.binary-studies-page .ba-body {
  padding: 28px;
  background: white;
}

.binary-studies-page .ba-chart-area {
  height: 160px;
  position: relative;
  margin-bottom: 20px;
}

.binary-studies-page .ba-chart-area svg {
  width: 100%;
  height: 100%;
}

.binary-studies-page .ba-stats {
  display: flex;
  gap: 12px;
}

.binary-studies-page .ba-stat {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.binary-studies-page .ba-stat .bsv {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}

.binary-studies-page .ba-stat .bsl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.binary-studies-page .ba-stat .bsv.red {
  color: var(--pink);
}

.binary-studies-page .ba-stat .bsv.green {
  color: var(--violet);
}

.binary-studies-page

/* ── WHY US ── */
#why {
  background: linear-gradient(135deg, rgba(253, 70, 142, 0.04) 0%, rgba(74, 93, 245, 0.06) 100%);
  max-width: 100%;
  padding: 96px 5%;
}

.binary-studies-page #why .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.binary-studies-page .why-quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.5px;
  border-left: 3px solid;
  border-image: var(--gradient) 1;
  padding-left: 24px;
  margin-bottom: 28px;
}

.binary-studies-page .why-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.binary-studies-page .why-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.binary-studies-page .why-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.binary-studies-page .why-chip .chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.binary-studies-page .why-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #f4f5ff;
}

.binary-studies-page

/* Dashboard SVG container */
.why-dashboard {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.binary-studies-page

/* Overlay text bar at bottom */
.why-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13, 13, 20, 0.82) 0%, transparent 100%);
  padding: 28px 24px 20px;
  border-radius: 0 0 24px 24px;
}

.binary-studies-page .why-overlay-line {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.binary-studies-page .why-overlay-line span {
  background: linear-gradient(90deg, #fd468e, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page

/* ── FINAL CTA ── */
#cta-final {
  background: var(--white);
  max-width: 100%;
  padding: 140px 5% 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.binary-studies-page #cta-final .inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.binary-studies-page

/* Multi-layer soft background mesh */
.cta-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.binary-studies-page .cta-mesh::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 93, 245, 0.07) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.binary-studies-page .cta-mesh::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 70, 142, 0.06) 0%, transparent 60%);
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.binary-studies-page .cta-mesh-extra {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 65%);
  bottom: 10%;
  left: 25%;
  pointer-events: none;
}

.binary-studies-page

/* Headline */
.cta-headline {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.06;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.binary-studies-page .cta-headline .cta-hl-pink {
  background: linear-gradient(135deg, #8b5cf6 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.binary-studies-page

/* Supporting text */
.cta-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 52px;
  font-weight: 400;
}

.binary-studies-page

/* Primary CTA button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #8b5cf6 0%, var(--pink) 100%);
  color: white;
  font-family: 'Sen', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 100px;
  padding: 20px 52px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.2),
    0 8px 32px rgba(139, 92, 246, 0.28),
    0 20px 60px rgba(253, 70, 142, 0.18);
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.binary-studies-page .cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  border-radius: 100px;
}

.binary-studies-page .cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 100px;
}

.binary-studies-page .cta-primary:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 14px 44px rgba(139, 92, 246, 0.36),
    0 28px 80px rgba(253, 70, 142, 0.24);
}

.binary-studies-page .cta-primary:hover::after {
  opacity: 1;
}

.binary-studies-page .cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.22s;
  flex-shrink: 0;
}

.binary-studies-page .cta-primary:hover svg {
  transform: translateX(4px);
}

.binary-studies-page

/* ── TESTIMONIAL ── */
#testimonial {
  padding: 96px 5%;
  max-width: 100%;
  background: var(--off-white);
}

.testi-layout .fade-up.visible {
  text-align: center !important;
}

.binary-studies-page #testimonial .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.binary-studies-page .testi-layout {
  display: grid;
  /* grid-template-columns: 1fr 1.6fr; */
  gap: 25px;
  align-items: center;
}

.binary-studies-page .testi-left .section-tag {
  margin-bottom: 14px;
}

.binary-studies-page .testi-left h2 {
  margin-bottom: 16px;
}

.binary-studies-page .testi-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.binary-studies-page .testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.binary-studies-page .testi-star {
  color: #FBBC05;
  font-size: 18px;
}

.binary-studies-page .testi-rating-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.binary-studies-page

/* The Google-style review card */
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 36px 40px;
  box-shadow: 0px 0px 4px 0px #0000008C;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.binary-studies-page

/* Google logo badge in top-right corner */
.testi-google-badge {
  /* position: absolute;
  top: 20px;
  right: 20px; */
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 10px 5px 8px;
}

.testi-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.binary-studies-page .testi-google-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.binary-studies-page .testi-google-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.binary-studies-page .testi-card-stars {
  display: flex;
  gap: 3px;
}

.binary-studies-page .testi-card-star {
  color: #FBBC05;
  font-size: 16px;
}

.binary-studies-page .testi-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 28px;
}

.binary-studies-page .testi-quote .tq-highlight {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.binary-studies-page .testi-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #00000080;
}

.testi-card-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.binary-studies-page .testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.binary-studies-page .testi-author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: left;
}

.binary-studies-page .testi-author-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  text-align: left;
}

.binary-studies-page .testi-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #00C34E;
  background: #00C34E1A;
  border: 1px solid rgba(52, 168, 83, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
}

.binary-studies-page .testi-verified svg {
  width: 10px;
  height: 10px;
  fill: #00C34E;
}

@media (max-width: 860px) {
  .binary-studies-page .testi-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .binary-studies-page .testi-quote {
    padding-right: 0;
  }
}

.binary-studies-page

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.binary-studies-page .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  .binary-studies-page .client-grid,
  .binary-studies-page .why-grid,
  .binary-studies-page .ba-grid {
    grid-template-columns: 1fr;
  }

  .binary-studies-page .problem-grid {
    grid-template-columns: 1fr;
  }

  .binary-studies-page .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .binary-studies-page .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .binary-studies-page .timeline::before {
    left: 28px;
  }

  .binary-studies-page .step-num {
    width: 56px;
    height: 56px;
    font-size: 13px;
  }

  .binary-studies-page .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .binary-studies-page .cta-box {
    padding: 48px 28px;
  }
}

@media (max-width: 600px) {
  .binary-studies-page nav {
    padding: 0 4%;
  }

  .binary-studies-page .hero {
    padding: 120px 4% 80px;
  }

  .binary-studies-page .metrics-row {
    gap: 10px;
  }

  .binary-studies-page .metric-card {
    min-width: 140px;
    padding: 18px 20px;
  }

  .binary-studies-page .metric-num {
    font-size: 36px;
  }

  .binary-studies-page .goals-checklist {
    grid-template-columns: 1fr;
  }

  .binary-studies-page .goals-check-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .binary-studies-page .goals-check-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .binary-studies-page .goals-check-item:last-child {
    border-bottom: none !important;
  }

  .binary-studies-page .results-grid {
    grid-template-columns: 1fr;
  }

  .binary-studies-page footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .binary-studies-page .sol-step {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .binary-studies-page .sol-num {
    width: 44px;
    height: 44px;
  }

  .binary-studies-page .sol-line-track {
    left: 21px;
  }

  .binary-studies-page .sol-step-sep {
    margin-left: 64px;
  }
}

/* Case studies style hero background, scoped to this page only. */
.binary-studies-page .hero {
  background: #05060d;
  isolation: isolate;
}

.binary-studies-page .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(160deg, #0d0822 0%, #080b18 40%, #05060d 70%, #08060f 100%);
}

.binary-studies-page .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.binary-studies-page .hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
}

.binary-studies-page .hero-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 30%, black 80%);
}

.hero-title-case {
  background: none !important;
  border-radius: 0px !important;
  overflow: visible !important;
}

.hero-title-case::before {
  background: none !important;
}

.binary-studies-page .hero-orb-1,
.binary-studies-page .hero-orb-2,
.binary-studies-page .hero-orb-3,
.binary-studies-page .hero-glow-center,
.binary-studies-page .hero-streak,
.binary-studies-page .hero-nodes,
.binary-studies-page .hero-line-tl,
.binary-studies-page .hero-line-br,
.binary-studies-page .hero-line-ml,
.binary-studies-page .hero-glass-left,
.binary-studies-page .hero-glass-right {
  position: absolute;
  pointer-events: none;
}

.binary-studies-page .hero-orb-1 {
  z-index: 1;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(74, 93, 245, 0.10) 40%, transparent 70%);
  top: -200px;
  left: -180px;
  filter: blur(60px);
}

.binary-studies-page .hero-orb-2 {
  z-index: 1;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 70, 142, 0.20) 0%, rgba(139, 92, 246, 0.10) 45%, transparent 70%);
  bottom: -160px;
  right: -140px;
  filter: blur(55px);
}

.binary-studies-page .hero-orb-3 {
  z-index: 1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 93, 245, 0.18) 0%, transparent 65%);
  top: 40%;
  left: 55%;
  filter: blur(70px);
}

.binary-studies-page .hero-glow-center {
  z-index: 1;
  width: 800px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.20) 0%, rgba(253, 70, 142, 0.10) 35%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  filter: blur(32px);
}

.binary-studies-page .hero-streak {
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(253, 70, 142, 0.08) 15%, rgba(139, 92, 246, 0.18) 35%, rgba(253, 70, 142, 0.22) 50%, rgba(74, 93, 245, 0.18) 65%, rgba(139, 92, 246, 0.08) 85%, transparent 100%);
}

.binary-studies-page .hero-nodes {
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.binary-studies-page .hero-nodes::before,
.binary-studies-page .hero-nodes::after {
  content: '';
  position: absolute;
  border-radius: 20px;
}

.binary-studies-page .hero-nodes::before {
  top: 18%;
  left: 6%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(139, 92, 246, 0.10);
  transform: rotate(-12deg);
  background: rgba(139, 92, 246, 0.03);
  backdrop-filter: blur(2px);
}

.binary-studies-page .hero-nodes::after {
  bottom: 16%;
  right: 7%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(253, 70, 142, 0.10);
  transform: rotate(10deg);
  background: rgba(253, 70, 142, 0.03);
}

.binary-studies-page .hero-line-tl {
  z-index: 2;
  top: 22%;
  left: 12%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.25), transparent);
  transform: rotate(-8deg);
}

.binary-studies-page .hero-line-br {
  z-index: 2;
  bottom: 24%;
  right: 10%;
  width: 100px;
  height: 1px;
  background: linear-gradient(270deg, rgba(253, 70, 142, 0.22), transparent);
  transform: rotate(6deg);
}

.binary-studies-page .hero-line-ml {
  z-index: 2;
  top: 55%;
  left: 4%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 93, 245, 0.18), transparent);
}

.binary-studies-page .hero-glass-left {
  z-index: 2;
  width: 220px;
  height: 120px;
  top: 30%;
  left: 3%;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transform: rotate(-5deg);
}

.binary-studies-page .hero-glass-right {
  z-index: 2;
  width: 180px;
  height: 100px;
  bottom: 28%;
  right: 3%;
  background: rgba(253, 70, 142, 0.03);
  border: 1px solid rgba(253, 70, 142, 0.07);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transform: rotate(4deg);
}

.binary-studies-page .hero>h1,
.binary-studies-page .hero>.hero-sub,
.binary-studies-page .hero>.hero-meta,
.binary-studies-page .hero>.metrics-row,
.binary-studies-page .hero>.hero-scroll {
  position: relative;
  z-index: 10;
}

.binary-studies-page .hero h1 {
  color: #ffffff;
}

.binary-studies-page .hero-sub {
  color: rgba(255, 255, 255, 0.68);
}

.binary-studies-page .hero-meta-item {
  color: rgba(255, 255, 255, 0.72);
}

.binary-studies-page .hero-meta-sep {
  color: rgba(255, 255, 255, 0.22);
}

.binary-studies-page .hero .metric-card {
  background: #fff;
  border-top: 0.8px solid #EBEBF0;
  box-shadow: 0px 2px 6px 0px #0D0D140A;
  box-shadow: 0px 4px 16px 0px #0D0D1414;
  backdrop-filter: blur(14px);
}

.binary-studies-page .hero .metric-label {
  color: #000;
}

/* Goals section layout matching the reference design. */
.binary-studies-page #goals {
  max-width: 1080px;
  padding-top: 104px;
  padding-bottom: 104px;
}

.binary-studies-page #goals .section-tag {
  margin-bottom: 32px;
}

.binary-studies-page #goals h2 {
  margin-bottom: 28px;
}

.binary-studies-page #goals .section-intro {
  max-width: 620px;
  margin-bottom: 72px;
}

.binary-studies-page .goals-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.binary-studies-page .goals-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 116px;
  padding: 28px 48px;
  border-bottom: 1px solid #d9dbe5;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.binary-studies-page .goals-check-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.binary-studies-page .goals-check-item:nth-child(odd) {
  padding-left: 0;
}

.binary-studies-page .goals-check-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid #d9dbe5;
}

.binary-studies-page .goals-check-item--center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 360px);
  min-height: auto;
  padding: 38px 0 0;
  border-bottom: 0;
}

.binary-studies-page .goals-check-item--center:nth-child(odd) {
  padding-left: 0;
}

.binary-studies-page .goals-check-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EEE3FF;
  border: 1px solid #e4dbff;
}

.binary-studies-page .goals-check-box svg {
  width: 15px;
  height: 15px;
  stroke: #7080ff;
}

.binary-studies-page .goals-check-title {
  color: #181821;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 5px;
}

.binary-studies-page .goals-check-sub {
  color: #818198;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.results-grid.result-card:hover {
  background: linear-gradient(135deg, rgba(74, 93, 245, 0.03), rgba(253, 70, 142, 0.03)) !important;
}

@media (max-width: 760px) {
  .binary-studies-page #goals {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .binary-studies-page #goals .section-intro {
    margin-bottom: 44px;
  }

  .binary-studies-page .goals-checklist {
    grid-template-columns: 1fr;
  }

  .binary-studies-page .goals-check-item,
  .binary-studies-page .goals-check-item:nth-child(odd),
  .binary-studies-page .goals-check-item:nth-child(even),
  .binary-studies-page .goals-check-item--center {
    width: 100%;
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid #d9dbe5;
    justify-self: stretch;
  }

  .binary-studies-page .goals-check-item:last-child {
    border-bottom: 0;
  }
}

/* Why Hashcodex section matching the reference card layout. */
.binary-studies-page #why {
  background: linear-gradient(90deg, #fff7fd 0%, #ffffff 42%, #fbfbfd 100%);
  padding: 104px 5%;
}

.binary-studies-page #why .inner {
  max-width: 1080px;
}

.binary-studies-page .why-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 82px;
  align-items: center;
}

.binary-studies-page .why-text .section-tag {
  color: #4a5df5;
  margin-bottom: 26px;
}

.binary-studies-page .why-text h2 {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.35;
}

.binary-studies-page .why-quote {
  max-width: 570px;
  margin: 0 0 34px 4px;
  padding: 2px 0 2px 34px;
  border-left: 4px solid #fd468e;
  border-image: none;
  color: #15151f;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
}

.binary-studies-page .why-text p {
  max-width: 565px;
  color: #818198;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  margin-bottom: 22px;
}

.binary-studies-page .why-difference-card {
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid #dedee4;
  border-radius: 34px;
  padding: 34px 34px 28px;
  box-shadow: 0 1px 0 rgba(13, 13, 20, 0.04);
}

.binary-studies-page .why-card-title {
  margin-bottom: 18px;
  color: #8a8a9d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.binary-studies-page .why-difference-list {
  display: flex;
  flex-direction: column;
}

.binary-studies-page .why-difference-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid #ececf1;
}

.binary-studies-page .why-difference-item:last-child {
  border-bottom: 0;
}

.binary-studies-page .why-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 6px;
  background: #eee8ff;
}

.binary-studies-page .why-check svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #7080ff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.binary-studies-page .why-difference-item p {
  margin: 0;
  color: #7f7f96;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .binary-studies-page .why-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .binary-studies-page .why-difference-card {
    border-radius: 24px;
  }
}

@media (max-width: 600px) {
  .binary-studies-page #why {
    padding: 76px 5%;
  }

  .binary-studies-page .why-quote {
    padding-left: 22px;
  }

  .binary-studies-page .why-difference-card {
    padding: 26px 22px 18px;
  }
}


/* cta-case */

.cta-case-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDFDFD;
  padding: 0px !important;
  max-width: 100% !important;
}

/* Background Circles */
.circle-left,
.circle-right {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.circle-left-gradient,
.circle-right-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(27px);
}

.circle-left-gradient {
  background: #FFA8EF33;
  left: -91px;
  top: -52px;
  width: 600px;
  height: 374px;
  z-index: 1;
  filter: blur(102px);
}

.circle-right-gradient {
  background: #FFA8EF33;
  right: -91px;
  bottom: -52px;
  width: 600px;
  height: 374px;
  z-index: 1;
  filter: blur(102px);
}

.circle-left {
  width: 500px;
  height: 500px;
  background: linear-gradient(180.02deg, rgba(254, 216, 246, 0.7) 30.24%, rgba(254, 216, 246, 0.14) 53.1%);
  bottom: -239px;
  left: -230px;
}

.circle-right {
  width: 500px;
  height: 500px;
  background: linear-gradient(221.73deg, rgba(239, 216, 254, 0.7) 35.5%, rgba(239, 216, 254, 0.21) 56.48%);
  top: -180px;
  right: -240px;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.content h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.content p {
  font-size: 15px;
  line-height: 1.8;
  color: #7d7d7d;
  max-width: 500px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 14px;
  }

  .circle-left,
  .circle-right {
    width: 300px;
    height: 300px;
  }
}
@media (max-width:576.98px) {
  .binary-studies-page .testi-card-footer{
    flex-wrap: wrap;
    justify-content: center;
  }
    .binary-studies-page .testi-verified{
      margin-left: 0;
    }
}
@media (max-width:991.98px) {
  .binary-studies-page h1{
    letter-spacing: 0px !important;
  }
  
}
@media (max-width:1199.98px) {
  .binary-studies-page h2{
    letter-spacing: 0px !important;
  }
}