/* ============================================================
   for-experts-page.css — SciencePreneur Website
   Styles for the For Experts / Join as Expert page.
   Uses green (#10B981 family) as page accent color.
   Sections: Hero, Benefits, How It Works, Perks,
             Testimonials, Registration Form, FAQ, CTA
   ============================================================ */


/* ── HERO: LABEL PILL ───────────────────────────────────────── */
.sci-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.2);
  font-size: 12px;
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── HERO: HEADING ACCENT ───────────────────────────────────── */
.sci-hero-accent {
  color: var(--green-400);
}

/* ── HERO: MINI STATS ROW ───────────────────────────────────── */
.sci-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.sci-stat-number {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--green-400);
  line-height: 1.1;
}

.sci-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ── HERO: GREEN BUTTON VARIANT ─────────────────────────────── */
.sci-btn-green {
  background: var(--green-500) !important;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4) !important;
}

.sci-btn-green:hover {
  background: var(--green-600) !important;
}

/* ── HERO: PROFILE CARD ─────────────────────────────────────── */
.sci-hero-card-wrap {
  position: relative;
}

.sci-hero-card {
  width: 300px;
  min-height: 340px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sci-hero-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.sci-hero-card-name-bar {
  width: 70%;
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-bottom: 8px;
}

.sci-hero-card-role-bar {
  width: 50%;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}

.sci-hero-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.sci-hero-card-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sci-hero-card-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.sci-hero-card-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}

.sci-hero-card-footer {
  margin-top: auto;
  padding: 10px;
  background: rgba(16,185,129,0.12);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(16,185,129,0.2);
  font-size: 11px;
  color: var(--green-400);
  font-weight: 600;
}

/* ── HERO: FLOATING BADGES ──────────────────────────────────── */
.sci-hero-badge {
  position: absolute;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.sci-hero-badge--verified {
  top: 20px;
  right: -44px;
  color: var(--green-400);
}

.sci-hero-badge--income {
  bottom: 40px;
  left: -54px;
  color: rgba(255,255,255,0.5);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 2 — 3 KEY BENEFITS
   ══════════════════════════════════════════════════════════════ */

.sci-benefits {
  padding: 80px 0;
  background: var(--white);
}

.sci-benefits-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sci-benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sci-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Top gradient accent bar */
.sci-benefit-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.sci-benefit-top-bar--green  { background: linear-gradient(90deg, var(--green-600), rgba(5,150,105,0.5)); }
.sci-benefit-top-bar--blue   { background: linear-gradient(90deg, var(--primary-500), rgba(27,107,147,0.5)); }
.sci-benefit-top-bar--teal   { background: linear-gradient(90deg, var(--accent-600), rgba(26,158,143,0.5)); }

.sci-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.sci-benefit-icon--green  { background: var(--green-50);    border: 1px solid rgba(16,185,129,0.12); }
.sci-benefit-icon--blue   { background: var(--primary-50);  border: 1px solid rgba(27,107,147,0.12); }
.sci-benefit-icon--teal   { background: var(--accent-100);  border: 1px solid rgba(46,196,182,0.12); }

.sci-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary-800);
  margin: 0 0 12px;
  line-height: 1.3;
}

.sci-benefit-card p {
  font-size: 14px;
  color: var(--neutral-500);
  margin: 0;
  line-height: 1.75;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 3 — HOW IT WORKS (4 STEPS)
   ══════════════════════════════════════════════════════════════ */

.sci-steps {
  padding: 80px 0;
  background: var(--neutral-50);
}

.sci-steps-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-steps-track {
  position: relative;
}

.sci-steps-line {
  position: absolute;
  top: 50px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-200), var(--green-500), var(--green-200));
  z-index: 0;
  border-radius: 2px;
}

.sci-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sci-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.sci-step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  gap: 2px;
}

.sci-step-circle--1 { background: var(--white); border-color: var(--green-700); box-shadow: var(--shadow-md); }
.sci-step-circle--2 { background: var(--white); border-color: var(--green-600); box-shadow: var(--shadow-md); }
.sci-step-circle--3 { background: var(--white); border-color: var(--green-500); box-shadow: var(--shadow-md); }
.sci-step-circle--4 {
  background: linear-gradient(135deg, var(--green-500), var(--accent-500));
  border-color: var(--green-500);
  box-shadow: 0 6px 24px rgba(16,185,129,0.35);
}

.sci-step-icon {
  font-size: 24px;
}

.sci-step-num {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.sci-step-circle--1 .sci-step-num,
.sci-step-circle--2 .sci-step-num,
.sci-step-circle--3 .sci-step-num { color: var(--green-600); }

.sci-step-circle--4 .sci-step-num { color: var(--white); }

.sci-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 6px;
}

.sci-step p {
  font-size: 13px;
  color: var(--neutral-500);
  margin: 0;
  line-height: 1.6;
  padding: 0 6px;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 4 — WHAT YOU GET (6 PERKS)
   ══════════════════════════════════════════════════════════════ */

.sci-perks {
  padding: 80px 0;
  background: var(--white);
}

.sci-perks-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sci-perk-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sci-perk-item:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-sm);
}

.sci-perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(16,185,129,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.1);
}

.sci-perk-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 4px;
}

.sci-perk-item p {
  font-size: 13px;
  color: var(--neutral-500);
  margin: 0;
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 5 — TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */

.sci-testimonials {
  padding: 72px 0;
  background: linear-gradient(135deg, #062B20, var(--green-700));
}

.sci-testimonials-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-300);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sci-testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.sci-quote-mark {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: 4px;
}

.sci-testimonial-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 18px;
  line-height: 1.7;
  font-style: italic;
}

.sci-testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sci-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sci-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.sci-testimonial-role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 6 — REGISTRATION FORM
   ══════════════════════════════════════════════════════════════ */

.sci-form-section {
  padding: 80px 0;
  background: var(--neutral-50);
}

.sci-form-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-form-intro {
  font-size: 14px;
  color: var(--neutral-500);
  margin: 0 0 28px;
  line-height: 1.6;
}

.sci-form-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.sci-form-main {
  flex: 1 1 58%;
  min-width: 0;
}

.sci-form-sidebar {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sci-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}

/* Field rows */
.sci-field-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.sci-field-row > * {
  flex: 1;
  min-width: 0;
}

.sci-field {
  margin-bottom: 18px;
}

.sci-field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

/* Inputs & textarea */
.sci-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-size: 14px;
  color: var(--neutral-800);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.sci-input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.sci-input::placeholder {
  color: var(--neutral-400);
}

.sci-textarea {
  min-height: 100px;
  resize: vertical;
}

/* ── Education pills (single-select radio) ──────────────────── */
.sci-edu-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sci-edu-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sci-edu-label {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-size: 12px;
  color: var(--neutral-500);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-block;
  user-select: none;
}

.sci-edu-label:hover {
  border-color: var(--green-300);
  color: var(--green-600);
}

.sci-edu-radio:checked + .sci-edu-label {
  border-color: var(--green-500);
  background: rgba(16,185,129,0.10);
  color: var(--green-600);
  font-weight: 600;
}

.sci-edu-radio:focus-visible + .sci-edu-label {
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

/* ── Field pills (multi-select checkbox) ────────────────────── */
.sci-fields-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sci-field-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sci-field-pill-label {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-size: 12px;
  color: var(--neutral-500);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-block;
  user-select: none;
}

.sci-field-pill-label:hover {
  border-color: var(--green-300);
  color: var(--green-600);
}

.sci-field-check:checked + .sci-field-pill-label {
  border-color: var(--green-500);
  background: rgba(16,185,129,0.10);
  color: var(--green-600);
  font-weight: 600;
}

.sci-field-check:focus-visible + .sci-field-pill-label {
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

/* Submit button */
.sci-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--green-500);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.sci-submit-btn:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
}

.sci-form-privacy {
  font-size: 11px;
  color: var(--neutral-400);
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ── Sidebar — Process card ─────────────────────────────────── */
.sci-sidebar-process {
  background: linear-gradient(165deg, var(--primary-800), #062B20);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
}

.sci-sidebar-process h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 18px;
}

.sci-sidebar-step {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.sci-sidebar-step:last-child {
  margin-bottom: 0;
}

.sci-sidebar-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16,185,129,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.4);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-400);
}

.sci-sidebar-step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.sci-sidebar-step-time {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

/* ── Sidebar — Requirements card ───────────────────────────── */
.sci-sidebar-reqs {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}

.sci-sidebar-reqs h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 14px;
}

.sci-req-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.sci-req-item:last-child {
  margin-bottom: 0;
}

.sci-req-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
  font-weight: 700;
  color: var(--green-600);
}

.sci-req-text {
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* ── Sidebar — Contact card ─────────────────────────────────── */
.sci-sidebar-contact {
  background: var(--green-50);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--green-200);
}

.sci-sidebar-contact h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 10px;
}

.sci-sidebar-contact > p {
  font-size: 13px;
  color: var(--neutral-600);
  margin: 0 0 12px;
  line-height: 1.5;
}

.sci-contact-email {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sci-contact-email span:last-child {
  font-size: 13px;
  color: var(--green-700);
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 7 — FAQ ACCORDION
   ══════════════════════════════════════════════════════════════ */

.sci-faq {
  padding: 72px 0;
  background: var(--white);
}

.sci-faq-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sci-faq-item {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sci-faq-item[open] {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 4px 16px rgba(16,185,129,0.08);
}

.sci-faq-question {
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-800);
  transition: color 0.2s ease;
  gap: 16px;
}

/* Remove default marker */
.sci-faq-question::-webkit-details-marker { display: none; }
.sci-faq-question::marker               { display: none; }

.sci-faq-item[open] .sci-faq-question {
  color: var(--green-600);
}

.sci-faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--neutral-400);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sci-faq-item[open] .sci-faq-arrow {
  background: rgba(16,185,129,0.15);
  color: var(--green-600);
  transform: rotate(180deg);
}

.sci-faq-answer {
  padding: 0 22px 16px;
  border-top: 1px solid var(--neutral-200);
}

.sci-faq-answer p {
  font-size: 14px;
  color: var(--neutral-600);
  margin: 14px 0 0;
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 8 — BOTTOM CTA
   ══════════════════════════════════════════════════════════════ */

.sci-cta {
  padding: 72px 0;
  background: linear-gradient(165deg, var(--primary-900) 0%, #062B20 50%, var(--green-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sci-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08), transparent);
  pointer-events: none;
}

.sci-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.sci-cta-emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

.sci-cta h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.25;
}

.sci-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 28px;
  line-height: 1.7;
}

.sci-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.sci-cta-btn-primary {
  padding: 15px 32px;
  background: var(--green-500);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(16,185,129,0.4);
  transition: all 0.25s ease;
}

.sci-cta-btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  color: var(--white);
}

.sci-cta-btn-secondary {
  padding: 15px 32px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.sci-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 5b — SOCIAL PROOF (3 photo cards)
   ══════════════════════════════════════════════════════════════ */

.sci-proof {
  padding: 80px 0;
  background: var(--neutral-50);
}

.sci-proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.sci-proof-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 8px;
}

.sci-proof-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary-900);
  margin: 0 0 12px;
}

.sci-proof-header p {
  font-size: 15px;
  color: var(--neutral-500);
  max-width: 520px;
  margin: 0 auto;
}

.sci-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sci-proof-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sci-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sci-proof-img-wrap {
  position: relative;
  overflow: hidden;
}

.sci-proof-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.4s ease;
}

.sci-proof-card:hover .sci-proof-img {
  transform: scale(1.04);
}

.sci-proof-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16,185,129,0.88);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.sci-proof-body {
  padding: 22px 24px 24px;
}

.sci-proof-stat {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 6px;
}

.sci-proof-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-800);
  margin: 0 0 8px;
  line-height: 1.3;
}

.sci-proof-desc {
  font-size: 13px;
  color: var(--neutral-500);
  margin: 0;
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 992px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  .sci-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sci-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sci-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sci-steps-line {
    display: none;
  }

  .sci-perks-grid {
    grid-template-columns: 1fr;
  }

  .sci-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sci-form-wrap {
    flex-direction: column;
  }

  .sci-form-sidebar {
    flex: none;
    width: 100%;
  }

  .sci-hero-badge--verified {
    right: -16px;
  }

  .sci-hero-badge--income {
    left: -16px;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 576px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 576px) {
  .sci-proof-grid,
  .sci-benefits-grid,
  .sci-perks-grid,
  .sci-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sci-steps-grid {
    grid-template-columns: 1fr;
  }

  .sci-field-row {
    flex-direction: column;
    gap: 0;
  }

  .sci-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .sci-hero-card-wrap {
    transform: scale(0.88);
  }

  .sci-hero-badge {
    display: none;
  }

  .sci-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}
