/* ============================================================
   Rinsetu Online — B2B Partner Landing Page
   style.css (Elevated Indian FinTech Design System)
   ============================================================ */

/* ── 1. CSS Custom Properties ───────────────────────────────── */
:root {
  /* Brand FinTech Palette */
  --primary:        #102A56;
  --primary-dark:   #091730;
  --primary-deep:   #061021;
  --primary-light:  #1A3C6E;
  --primary-soft:   #234B88;

  --accent:         #F47B20;
  --accent-dark:    #D86510;
  --accent-light:   #FF9240;
  --accent-soft:    rgba(244, 123, 32, 0.12);
  --accent-glow:    rgba(244, 123, 32, 0.35);

  --green:          #00A651;
  --green-dark:     #008541;
  --green-soft:     rgba(0, 166, 81, 0.12);
  --green-glow:     rgba(0, 166, 81, 0.3);

  --blue-soft:      rgba(26, 60, 110, 0.08);

  /* Surface & Background Neutrals */
  --bg:             #F7F9FC;
  --bg-card:        #FFFFFF;
  --bg-dark:        #0B1B36;
  --border:         #E2E8F0;
  --border-light:   #EDF2F7;
  --border-focus:   #2554A0;

  /* Typography Colors */
  --text-title:     #0F1E36;
  --text:           #2D3748;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;

  /* Elevation & Shadows */
  --shadow-xs:      0 1px 3px rgba(10, 31, 68, 0.06);
  --shadow-sm:      0 3px 10px rgba(10, 31, 68, 0.07);
  --shadow-md:      0 8px 24px rgba(10, 31, 68, 0.09);
  --shadow-lg:      0 16px 40px rgba(10, 31, 68, 0.12);
  --shadow-card:    0 12px 32px rgba(10, 31, 68, 0.08), 0 2px 6px rgba(10, 31, 68, 0.04);
  --shadow-hero:    0 24px 64px -12px rgba(0, 0, 0, 0.5);

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --radius-pill:    999px;

  /* Fonts */
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:   'Poppins', sans-serif;

  /* Transitions & Layout */
  --transition:     all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:      1240px;
  --header-h:       74px;
}

/* ── 2. Reset & Base Setup ───────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-title);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 3. Animation Classes ────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* ── 4. Shared Section Layouts ──────────────────────────────── */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── 5. Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #E66C15 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(244, 123, 32, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF8C36 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.45);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  font-size: 0.82rem;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── 6. TOP REGULATORY TRUST STRIP ──────────────────────────── */
.top-bar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: rgba(0, 166, 81, 0.2);
  color: #2ED573;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-bar-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.top-bar-link {
  color: #ffffff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: var(--accent);
}

.top-bar-hours {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

/* ── 7. STICKY HEADER ───────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: #2D3748;
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  transition: width 0.2s ease;
  border-radius: 2px;
}
.header-nav a:hover {
  color: var(--accent);
}
.header-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--blue-soft);
  border: 1px solid rgba(16, 42, 86, 0.08);
  transition: var(--transition);
}
.header-call-btn:hover {
  background: rgba(16, 42, 86, 0.12);
}
.header-actions .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
}


/* ── 8. HERO SECTION (OVERHAULED & PREMIUM FINTECH) ──────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #07152B 0%, #0D2347 45%, #12315E 100%);
  padding: 85px 0 105px;
  color: #ffffff;
  overflow: hidden;
}

/* Background Ambient Lighting & Circuit Mesh */
.hero-bg-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow--orange {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.22) 0%, transparent 65%);
  top: -180px;
  right: -100px;
}

.hero-glow--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 84, 160, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: 20%;
}

.hero-glow--green {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 166, 81, 0.15) 0%, transparent 70%);
  top: 10%;
  left: -150px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 60%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Column Content */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 22px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00A651;
  box-shadow: 0 0 0 0 rgba(0, 166, 81, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(0, 166, 81, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 166, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 166, 81, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #FFB066 0%, var(--accent) 60%, #FF8020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 560px;
}

/* 4-Item Perk Grid */
.hero-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.hero-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.hero-perk-item .perk-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(244, 123, 32, 0.16);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-perk-item:nth-child(2) .perk-icon,
.hero-perk-item:nth-child(3) .perk-icon {
  background: rgba(0, 166, 81, 0.16);
  color: #2ED573;
}

.perk-info {
  display: flex;
  flex-direction: column;
}

.perk-info strong {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.perk-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-helpline-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-helpline-row i {
  color: var(--accent);
}

.hero-helpline-row a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-helpline-row a:hover {
  color: var(--accent);
}

/* ── 9. HERO RIGHT: PARTNER COMMAND & EARNINGS HUB ───────────── */
.hero-card-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-earnings-hub {
  background: rgba(11, 27, 54, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-hero), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

/* Hub Top Trust Strip */
.hub-trust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}

.hub-trust-pill--nbfc {
  background: rgba(0, 166, 81, 0.16);
  border: 1px solid rgba(0, 166, 81, 0.35);
  color: #2ED573;
}

.hub-trust-pill--payout {
  background: rgba(244, 123, 32, 0.16);
  border: 1px solid rgba(244, 123, 32, 0.35);
  color: var(--accent-light);
}

.hub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hub-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.hub-live-badge {
  background: rgba(0, 166, 81, 0.18);
  border: 1px solid rgba(0, 166, 81, 0.35);
  color: #2ED573;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Role Selector Pills */
.hub-role-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.hub-role-tab {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 6px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hub-role-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hub-role-tab.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(244, 123, 32, 0.35);
}

/* Quick Slider */
.hub-slider-wrap {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hub-slider-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.hub-slider-label strong {
  color: var(--accent-light);
  font-weight: 700;
}

.hub-range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.hub-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--accent);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.hub-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.hub-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* Big Earning Highlight */
.hub-amount-card {
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.12) 0%, rgba(26, 60, 110, 0.25) 100%);
  border: 1px solid rgba(244, 123, 32, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 16px;
  text-align: center;
}

.hub-amount-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.hub-amount-val {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hub-amount-sub {
  font-size: 0.74rem;
  color: #2ED573;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Multi-Stream Breakdown */
.hub-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.hub-breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

.hub-breakdown-item .item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.hub-breakdown-item .item-left i {
  color: var(--accent);
  font-size: 0.75rem;
  width: 14px;
}

.hub-breakdown-item strong {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
}

/* Collection Metric Benchmark Assurance */
.hub-metric-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.metric-banner-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(244, 123, 32, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.metric-banner-info {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.metric-banner-info strong {
  color: #ffffff;
  font-weight: 600;
}

/* Loan Snapshot Pill Strip */
.hub-loan-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.spec-pill i {
  color: var(--accent-light);
  font-size: 0.75rem;
}

.hub-cta-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* Floating Badges around Card */
.hero-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 24, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.hero-float-chip--top {
  top: -16px;
  right: -20px;
  animation: float-chip-a 6s ease-in-out infinite;
}

.hero-float-chip--bottom {
  top: 54%;
  left: -40px;
  animation: float-chip-b 7s ease-in-out infinite;
}

.chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chip-icon--green {
  background: rgba(0, 166, 81, 0.2);
  color: #2ED573;
}

.chip-icon--orange {
  background: rgba(244, 123, 32, 0.2);
  color: var(--accent);
}

.chip-text {
  display: flex;
  flex-direction: column;
}

.chip-text strong {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.chip-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes float-chip-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float-chip-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── 10. TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-xs);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px;
  border-right: 1px solid var(--border-light);
}

.trust-pill-item:last-child {
  border-right: none;
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-info strong {
  font-size: 0.84rem;
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.2;
}

.trust-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── 11. STATS COUNTER SECTION ──────────────────────────────── */
.stats-section {
  background: #ffffff;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 60, 110, 0.2);
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.stat-icon--blue {
  background: rgba(26, 60, 110, 0.1);
  color: var(--primary);
}

.stat-icon--orange {
  background: rgba(244, 123, 32, 0.12);
  color: var(--accent);
}

.stat-icon--green {
  background: rgba(0, 166, 81, 0.12);
  color: var(--green);
}

.stat-icon--purple {
  background: rgba(107, 70, 193, 0.12);
  color: #6B46C1;
}

.stat-growth-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(26, 60, 110, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stat-growth-tag--orange {
  color: var(--accent-dark);
  background: rgba(244, 123, 32, 0.1);
}

.stat-growth-tag--green {
  color: var(--green-dark);
  background: rgba(0, 166, 81, 0.1);
}

.stat-growth-tag--purple {
  color: #553C9A;
  background: rgba(107, 70, 193, 0.1);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 6px;
}

.stat-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── 12. WHY PARTNER SECTION ────────────────────────────────── */
.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(244, 123, 32, 0.3);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.12) 0%, rgba(26, 60, 110, 0.08) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.why-card:hover .why-icon-box {
  background: var(--accent);
  color: #ffffff;
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.why-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

/* ── 13. EARNINGS CALCULATOR SECTION ────────────────────────── */
.calculator-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calculator-inner {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calculator-header {
  background: linear-gradient(135deg, var(--primary) 0%, #153A6E 100%);
  color: #ffffff;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.calculator-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.calculator-header h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.calculator-header p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.calculator-body {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  padding: 36px 32px;
}

/* Calc Inputs */
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.calc-field {
  display: flex;
  flex-direction: column;
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calc-label-row label, .calc-field-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-title);
}

.value-display {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.calc-slider-track {
  width: 100%;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 6px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* Radio Group */
.calc-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.calc-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  cursor: pointer;
  transition: var(--transition);
}

.calc-radio-label input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.calc-radio-label.active {
  border-color: var(--accent);
  background: rgba(244, 123, 32, 0.05);
  box-shadow: 0 2px 8px rgba(244, 123, 32, 0.12);
}

.radio-content {
  flex-grow: 1;
}

.radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radio-header strong {
  font-size: 0.88rem;
  color: var(--text-title);
}

.radio-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--blue-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.radio-tag--highlight {
  color: #ffffff;
  background: var(--accent);
}

.radio-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Calc Outputs */
.calc-outputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-output-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.primary-output {
  background: linear-gradient(135deg, #0A1F44 0%, #153565 100%);
  color: #ffffff;
  border-color: transparent;
  padding: 24px;
}

.output-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.primary-output .output-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.output-badge {
  background: var(--green);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.primary-output .output-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.primary-output .output-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.calc-output-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calc-output-row .output-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.output-value--secondary {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.calc-output-row .output-sub {
  font-size: 0.7rem;
  color: var(--text-light);
}

.calc-disclaimer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.calc-disclaimer i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── 14. HOW IT WORKS (5-STEP FIELD JOURNEY) ────────────────── */
.how-section {
  background: var(--bg);
}

.flow-container {
  max-width: 1160px;
  margin: 0 auto;
}

.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.flow-step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.flow-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.flow-number-badge {
  position: absolute;
  top: -12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.flow-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 8px 0 16px;
}

.flow-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.flow-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.flow-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--blue-soft);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── 15. PRODUCT AT A GLANCE ────────────────────────────────── */
.product-section {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.product-param-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.product-param-card:hover {
  background: #ffffff;
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.param-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 60, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.param-details {
  display: flex;
  flex-direction: column;
}

.param-label {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.param-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 3px;
}

.param-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.fldg-highlight-box {
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.08) 0%, rgba(26, 60, 110, 0.06) 100%);
  border: 1px solid rgba(0, 166, 81, 0.25);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fldg-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.fldg-content h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.fldg-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── 16. ELIGIBILITY SECTION ────────────────────────────────── */
.eligibility-section {
  background: var(--bg);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.eligibility-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.eligibility-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.eligibility-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.eligibility-card-icon--orange {
  background: var(--accent-soft);
  color: var(--accent);
}

.eligibility-card-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.eligibility-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.eligibility-list li i {
  color: var(--green);
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.eligibility-list li div {
  display: flex;
  flex-direction: column;
}

.eligibility-list li strong {
  font-size: 0.92rem;
  color: var(--text-title);
  font-weight: 600;
  line-height: 1.3;
}

.eligibility-list li span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 17. PARTNER PROGRAMS (TIERS) ───────────────────────────── */
.partners-section {
  background: #ffffff;
}

.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.partner-type-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.partner-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.partner-type-card--featured {
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: 0 16px 40px rgba(244, 123, 32, 0.15);
  transform: scale(1.02);
}

.partner-type-card--featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #E66C15 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(244, 123, 32, 0.4);
  white-space: nowrap;
}

.partner-card-head {
  margin-bottom: 24px;
}

.partner-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.partner-icon-circle--accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.partner-type-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.partner-type-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.partner-earning-highlight {
  background: rgba(26, 60, 110, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.partner-earning-highlight--accent {
  background: rgba(244, 123, 32, 0.08);
  border: 1px solid rgba(244, 123, 32, 0.2);
}

.earn-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.earn-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.partner-earning-highlight--accent .earn-num {
  color: var(--accent-dark);
}

.earn-num span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.earn-range {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-dark);
  display: block;
  margin-top: 4px;
}

.partner-perks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.partner-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text);
}

.partner-perks-list li i {
  color: var(--green);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ── 18. REGISTRATION FORM SECTION ──────────────────────────── */
.form-section {
  background: linear-gradient(135deg, #091934 0%, #102A56 100%);
  color: #ffffff;
  padding: 80px 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.form-info-col {
  display: flex;
  flex-direction: column;
}

.form-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 123, 32, 0.2);
  color: #FFB066;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 18px;
}

.form-info-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.form-info-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 32px;
}

.form-perks-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.form-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-perk i {
  color: #2ED573;
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-perk div {
  display: flex;
  flex-direction: column;
}

.form-perk strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.form-perk span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-support-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.form-support-card i {
  color: var(--accent);
  font-size: 1.25rem;
}

.form-support-card div {
  display: flex;
  flex-direction: column;
}

.form-support-card span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-support-card strong {
  font-size: 0.88rem;
  color: #ffffff;
}

/* The Form Card */
.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.form-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.form-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.form-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-title);
}

.form-field label span {
  color: #e53e3e;
}

.input-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  height: 46px;
  transition: var(--transition);
}

.input-with-icon:focus-within {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.15);
}

.input-with-icon i {
  color: var(--text-light);
  font-size: 0.9rem;
  width: 16px;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  color: var(--text);
}

.input-with-icon select {
  cursor: pointer;
}

.form-submit-wrap {
  margin-top: 8px;
}

.form-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-privacy-note i {
  color: var(--green);
}

.form-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid rgba(0, 166, 81, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

/* ── 19. FAQ SECTION ────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(26, 60, 110, 0.3);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.35;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-soft);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

/* ── 20. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-tagline strong {
  color: #ffffff;
}

.footer-badges-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ft-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
}

.footer-contact-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item strong {
  font-size: 0.86rem;
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.rbi-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.rbi-disclaimer i {
  color: #2ED573;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.rbi-disclaimer p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.rbi-disclaimer strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal-links a:hover {
  color: var(--accent);
}

/* ── 21. RESPONSIVE BREAKPOINTS ─────────────────────────────── */
@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card-col {
    max-width: 520px;
    margin: 0 auto;
  }
  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .flow-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-types-grid {
    grid-template-columns: 1fr;
  }
  .partner-type-card--featured {
    transform: none;
  }
  .partner-type-card--featured:hover {
    transform: translateY(-6px);
  }
  .calculator-body {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 50px 0;
  }
  .top-bar {
    display: none;
  }
  .header-logo {
    margin-right: 12px;
  }
  .header-logo img {
    height: 36px;
  }
  .header-call-btn {
    display: none;
  }
  .header-actions .btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .hero {
    padding: 40px 0 50px;
  }
  .hero-pill-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero-perks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-float-chip {
    display: none;
  }
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .flow-steps-grid {
    grid-template-columns: 1fr;
  }
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 24px 16px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.48rem;
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .hero-helpline-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.78rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .calc-output-row {
    grid-template-columns: 1fr;
  }
  .hub-role-selector {
    grid-template-columns: 1fr;
  }
  .hub-amount-val {
    font-size: 1.8rem;
  }
  .hero-earnings-hub {
    padding: 20px 14px;
  }
  .header-actions .btn {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
}
