/* ============================================================
   index.css — HSCOL Homepage (Pixel-Perfect Match to Reference)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* :root {
  --navy:       #111A3E;
  --navy-dark:  #0C1430;
  --navy-mid:   #152048;
  --gold:       #E8A820;
  --gold-light: #var(--gold);
  --gold-btn:   #D4951A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --light-gray: #F2F4F8;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --radius:     10px;
  --font:       'Plus Jakarta Sans', 'Inter', 'Montserrat', sans-serif;
} */

:root {
  --navy:       #1b1554;
  --navy-dark:  #1b1554;
  --navy-mid:   #1b1554;
  --gold:       #E8A820;
  --gold-light: #E8A820;
  --gold-btn:   #D4951A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --light-gray: #F2F4F8;
  --text-dark:  #1b1554;
  --text-mid:   #374151;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --radius:     10px;
  --font:        'Plus Jakarta Sans', 'Inter', 'Montserrat', sans-serif;
}


body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═════════════════════════════════════════════
   HERO SECTION + Floating Nav
═════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #0C1430;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/home-herro.png') center/cover no-repeat;
  opacity: 0.75;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(10,16,42,0.55) 0%,
    rgba(10,16,42,0.45) 40%,
    rgba(10,16,42,0.80) 100%
  ); */
  z-index: 1;
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 192px 24px 70px;
  max-width: 820px;
  width: 100%;
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}

.gold-word {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Hero CTA Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,32,0.4);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   TRUSTED BY & STATS PILL
═══════════════════════════════════════════ */
.stats-pill-section {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  padding: 0 0 40px;
  background: transparent;
}

.stats-pill {
  background: var(--navy-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
}

.trusted-section {
  padding: 0 0 40px;
  background: #fff;
}

.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trusted-text {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-dark);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}

.trusted-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-logos {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scroll-left 35s linear infinite;
  white-space: nowrap;
}

.trusted-logos:hover {
  animation-play-state: paused;
}

.logo-item {
  color: #555;
  line-height: 1.2;
  flex-shrink: 0;
  /* display: inline-flex; */
  align-items: center;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTION GENERIC
═══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-btn);
  background: rgba(232,168,32,0.1);
  border: 1px solid rgba(232,168,32,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* How HSCOL Works */
        .how-it-works {
            padding: 85px 0;
            background-color: var(--bg-white);
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-top: 50px;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 36px;
            left: 8%;
            right: 8%;
            height: 1.5px;
            background: #FCDAA3;
            z-index: 0;
        }

        .step-item {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 10px;
        }

        .step-icon {
            width: 72px;
            height: 72px;
            background: #FFFFFF;
            border: 2px solid #FCDAA3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            color: #201A5B;
            box-shadow: 0 8px 20px rgba(245, 194, 89, 0.25);
        }
        
        .step-badge {
            display: block;
            background: transparent;
            color: #D98829;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .step-item h4 {
            color: #201A5B;
            font-size: 1.05rem;
            margin-bottom: 6px;
            font-weight: 800;
        }

        .step-item p {
            font-size: 0.82rem;
            color: #777777;
            line-height: 1.4;
            max-width: 200px;
            margin: 0 auto;
        }

/* ═══════════════════════════════════════════
   WHY JOIN
═══════════════════════════════════════════ */
.why-section {
  padding: 80px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-color: rgba(232,168,32,0.3);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(17,26,62,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   REGISTRATION PROCESS
═══════════════════════════════════════════ */
.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.process-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-badge.buyer {
  background: var(--navy);
  color: #fff;
}

.process-badge.seller {
  background: var(--gold);
  color: var(--navy-dark);
}

.process-col-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.process-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.process-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.process-col:last-child .process-step-num {
  background: var(--gold);
  color: var(--navy-dark);
}

.process-step-item h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.process-step-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   PLANS & SUBSCRIPTIONS
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PLANS & SUBSCRIPTIONS
═══════════════════════════════════════════ */
.plans-section {
  position: relative;
  padding: 80px 0;
  /* background-image:
    linear-gradient(180deg, rgba(11,16,38,0.92) 0%, rgba(11,16,38,0.88) 50%, rgba(11,16,38,0.95) 100%),
    url("../images/plans-bg.svg"); */
    background-image:
    linear-gradient(180deg, rgba(11,16,38,0.92) 0%, rgba(11,16,38,0.88) 50%, rgba(11,16,38,0.95) 100%),
    url("../images/home-herro.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed;  */
  overflow: hidden;
}

/* soft glow accents so the image doesn't feel flat */
.plans-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.plans-section .container { position: relative; z-index: 2; }

.plans-section .section-title { color: #fff; }
.plans-section .section-subtitle { color: rgba(255,255,255,0.6); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}

.plan-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.25s ease;
}

.plan-card:not(.featured):hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.plan-card.featured {
  background: linear-gradient(160deg, rgba(245,200,66,0.14), rgba(255,255,255,0.06));
  border: 1.5px solid rgba(245,200,66,0.5);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(245,200,66,0.18);
}

/* icon badge circle at top of each card */
.plan-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.35);
  color: var(--gold);
  font-size: 20px;
}

/* "Most Popular" ribbon */
.plan-card.featured .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #111A3E;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(245,200,66,0.4);
}

.plan-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.plan-currency {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.plan-amount {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.plan-period {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.plan-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245,200,66,0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-plan {
  display: block;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
  transition: all 0.2s;
  border: none;
}

.btn-plan-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-plan-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-plan-solid {
  background: var(--gold);
  color: #111A3E;
}

.btn-plan-solid:hover {
  background: #ffd75c;
  transform: translateY(-2px);
}
/* ═══════════════════════════════════════════
   CHOOSE YOUR ROLE
═══════════════════════════════════════════ */
.role-section {
  padding: 80px 0;
  background: var(--off-white);
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.role-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.role-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.role-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}

.role-card > p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.role-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}

.role-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}

.role-features li svg {
  color: var(--gold-btn);
  flex-shrink: 0;
}

.btn-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  width: 100%;
}

.btn-role-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-role-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-role-navy {
  background: var(--navy);
  color: #fff;
}

.btn-role-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   WATCH THE PROCESS
═══════════════════════════════════════════ */
.watch-section {
  padding: 80px 0;
  background: #FAF8F5;
}

.watch-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.watch-content .section-tag { color: var(--gold); background: rgba(232,168,32,0.12); border-color: rgba(232,168,32,0.25); }
.watch-content .section-title { color: #131212; }

.watch-content p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  background: #1b1554;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color:  #ffffff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-watch:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.watch-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.watch-media img {
  width: 90%;
  border-radius: 16px;
  display: block;
}

.watch-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(232,168,32,0.2);
  transition: all 0.2s;
}

.watch-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 18px rgba(232,168,32,0.15);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .role-grid { grid-template-columns: 1fr; }
  .watch-layout { grid-template-columns: 1fr; gap: 36px; }
  
  .trusted-logos { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .stats-pill { flex-wrap: wrap; gap: 20px; justify-content: center; border-radius: 16px; padding: 30px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 30%; justify-content: center; }
}

@media (max-width: 768px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  
  .trusted-wrapper { flex-direction: column; gap: 15px; }
  .trusted-logos { gap: 15px; }
  .stat-item { flex: 1 1 45%; justify-content: flex-start; }
}


/* ===============================================
   CHOOSE YOUR ROLE
=============================================== */
.role-section {
  padding: 80px 0;
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 1;
}

.role-bg-left, .role-bg-right {
  position: absolute;
  top: 8%;
  height: 84%;
  width: 220px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  overflow: hidden;
}

.role-bg-left {
  left: 0;
  background-image: url('../images/role_bg_left.jpg');
  /* Curved right edge, flat left edge */
  border-radius: 0 160px 160px 0;
}

.role-bg-right {
  right: 0;
  background-image: url('../images/role_bg_right.jpg');
  /* Curved left edge, flat right edge */
  border-radius: 160px 0 0 160px;
}

.role-container {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}

.role-header { margin-bottom: 50px; }

.role-header .section-title {
  color: #111A3E;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.role-title-divider {
  width: 40px;
  height: 2px;
  background: #E8A820;
  margin: 0 auto 18px;
}

.role-header .section-subtitle {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.role-cards-wrapper {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.role-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 36px 32px 32px;
  flex: 1;
  max-width: 450px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.role-card-buyer { border: 1px solid #F0D99A; }
.role-card-seller { border: 1px solid #DCE5F0; }

.role-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.role-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.buyer-icon { background: #E8A820; color: #FFF; }
.seller-icon { background: #E8EEF8; color: #3B5EA6; }

.role-card-title { font-size: 22px; font-weight: 800; }
.buyer-title { color: #E8A820; }
.seller-title { color: #111A3E; }

.role-card-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 0;
}

.role-card-divider {
  border: none;
  height: 1px;
  margin: 22px 0;
}

.buyer-divider { background: rgba(232,168,32,0.2); }
.seller-divider { background: rgba(17,26,62,0.09); }

.role-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.role-features li {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.buyer-check { color: #E8A820; }
.seller-check { color: #3B5EA6; }

.role-btn {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.buyer-btn {
  background: #E8A820;
  color: #FFF;
  border: 2px solid #E8A820;
}

.buyer-btn:hover {
  background: #D09618;
  border-color: #D09618;
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,168,32,0.4);
}

.seller-btn {
  background: #FFF;
  border: 2px solid #111A3E;
  color: #111A3E;
}

.seller-btn:hover {
  background: #111A3E;
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(17,26,62,0.2);
}

@media (max-width: 900px) {
  .role-cards-wrapper { flex-direction: column; align-items: center; }
  .role-bg-left, .role-bg-right { display: none; }
  .role-card { max-width: 100%; width: 100%; }
}
