:root {
  /* Colors */
  --primary-blue: #1E4FD7;
  --primary-purple: #6A4C93;
  --primary-teal: #2EC4B6;
  --accent-golden: #D4A574;
  --accent-orange: #FF6B35;
  --bg-light: #F4F6FF;
  --bg-cream: #FFF8F0;
  --text-dark: #0F172A;
  --white: #FFFFFF;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Effects */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --border-radius: 16px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===== HEADER/NAVBAR ===== */
:root {
  --p-navy: #0e244f;
  --p-blue: #5f87ff;
  --p-orange: #f48020; /* YorBux Accent Orange */
  --white: #ffffff;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(14, 36, 79, 0.05);
  z-index: 2000;
  height: 85px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo Styling */
.logo {
  height: 45px;
  transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }

.logo-text {
  color: var(--p-navy);
  font-weight: 800;
  font-size: 1.5rem;
}

/* Center Menu Styling */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--p-navy);
  transition: 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--p-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--p-blue); }
.nav-links a:hover::after { width: 100%; }

/* Action Buttons Sidebar */
.action-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-login {
  text-decoration: none;
  color: var(--p-navy);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.link-login:hover { color: var(--p-blue); }

.btn-try-free {
  background: var(--p-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 12px; /* Semi-rounded as requested */
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(244, 128, 32, 0.2);
}

.btn-try-free:hover {
  background: var(--p-navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 36, 79, 0.2);
}

/* Mobile Controls */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 2001;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--p-navy);
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hamburger Animation to X */
.mobile-toggle.active .bar-1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar-2 {
  opacity: 0;
}

.mobile-toggle.active .bar-3 {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Responsive Design */
@media (max-width: 991px) {
 /* .menu-side { display: none; }  Mobile par center menu hide */
  
  .mobile-toggle { display: flex; }
  
  .main-header { height: 70px; }
  
  .btn-try-free {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ===== HERO SECTION ===== */
:root {
  --brand-blue: #5f87ff;
  --brand-dark: #0e244f;
  --bg-gradient: radial-gradient(circle at 50% 50%, #f0f4ff 0%, #ffffff 100%);
}

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  overflow: hidden;
  font-family: 'Inter', sans-serif; /* Professional Font */
  text-align: center;
}

/* Background Graphics */
.bg-soft-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(at 10% 10%, rgba(95, 135, 255, 0.05) 0px, transparent 40%),
    radial-gradient(at 90% 90%, rgba(14, 36, 79, 0.04) 0px, transparent 40%);
  z-index: 1;
}

.svg-vector { position: absolute; z-index: 2; pointer-events: none; }
.v-left { top: 20%; left: 2%; }
.v-right { bottom: 10%; right: 2%; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-25px) rotate(5deg); }
}
.floating-slow { animation: float 8s infinite ease-in-out; }
.floating-reverse { animation: float 10s infinite reverse ease-in-out; }

.pulse-node {
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { r: 4; opacity: 1; }
  50% { r: 8; opacity: 0.4; }
  100% { r: 4; opacity: 1; }
}

/* Center Content Styling */
.hero-center-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

/* Compact Elite Badge */
.elite-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(14, 36, 79, 0.05);
  border: 1px solid rgba(95, 135, 255, 0.1);
  margin-bottom: 30px;
}
.elite-badge-mini img { height: 18px; width: auto; }
.elite-badge-mini span { 
  font-size: 0.85rem; 
  font-weight: 700; 
  color: var(--brand-dark); 
  letter-spacing: 0.3px;
}

/* Typography */
.main-title-premium {
  font-size: 4.8rem; /* Exact Big Bold Look */
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-accent-blue {
  background: linear-gradient(135deg, var(--brand-dark) 30%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Referral Box - Exact Image Style */
.referral-box-container {
  background: #ffffff;
  padding: 6px 6px 6px 25px;
  border-radius: 100px;
  display: inline-flex;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 20px 40px rgba(14, 36, 79, 0.12);
  border: 1px solid rgba(95, 135, 255, 0.2);
}

.referral-form { display: flex; width: 100%; align-items: center; }

.input-group { display: flex; align-items: center; flex-grow: 1; }
.icon-key { color: var(--brand-blue); font-size: 1.1rem; margin-right: 15px; }

.input-group input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 1.1rem;
  outline: none;
  font-weight: 500;
  color: var(--brand-dark);
}

.btn-join {
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s all;
}

.btn-join:hover {
  background: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(95, 135, 255, 0.4);
}

.verification-text {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}
.verification-text i { color: #22c55e; margin-right: 5px; }

/* Mobile Adjustments */
@media (max-width: 768px) {
  .main-title-premium { font-size: 3rem; }
  .referral-box-container { flex-direction: column; border-radius: 20px; padding: 15px; }
  .btn-join { width: 100%; justify-content: center; margin-top: 15px; }
}
/* ===== FEATURE CARDS ===== */
:root {
  --p-purple: #7c5cdb;
  --p-navy: #0e244f;
  --p-blue: #5f87ff;
}

.features-premium {
  padding: 100px 0;
  position: relative;
  background-color: #fbfaff;
  overflow: hidden;
}
.features-bg-elements .f-vector {
  position: absolute;
  filter: blur(80px);
  z-index: 1;
  border-radius: 50%;
}
.f-v-1 {
  width: 400px; height: 400px;
  background: rgba(124, 92, 219, 0.05);
  top: -100px; left: -100px;
}
.f-v-2 {
  width: 300px; height: 300px;
  background: rgba(95, 135, 255, 0.05);
  bottom: -50px; right: -50px;
}

.header-group {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.me-text {
  color: var(--p-purple);
  font-style: italic;
  position: relative;
}

.me-text::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 2px;
  background: var(--p-purple);
  opacity: 0.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}
.feature-card-premium {
  position: relative;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(124, 92, 219, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--p-purple);
  box-shadow: 0 20px 40px rgba(124, 92, 219, 0.1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--p-navy), var(--p-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.feature-card-premium:hover .feature-icon-wrapper {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(124, 92, 219, 0.3);
}

.feature-card-premium h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--p-navy);
  margin-bottom: 15px;
}

.feature-card-premium p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.card-step-indicator {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(124, 92, 219, 0.03); 
  transition: 0.3s;
}

.feature-card-premium:hover .card-step-indicator {
  color: rgba(124, 92, 219, 0.08);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title { font-size: 2.2rem; }
}

/* who can join */
:root {
  --p-purple: #7c5cdb;
  --p-navy: #0e244f;
  --p-blue: #5f87ff;
  --light-bg: #f0f4ff; /* Light base like the image */
  --white: #ffffff;
}

.yorbux-exclusive-section {
  padding: 100px 0;
  /* Radiant background like the reference image */
  background: radial-gradient(circle at center, #ffffff 0%, #e1e9ff 100%);
  position: relative;
  overflow: hidden;
  color: var(--p-navy);
  font-family: 'Inter', sans-serif;
}

/* Atmospheric Glows */
.light-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
}
.glow-1 { top: -10%; left: -10%; background: rgba(95, 135, 255, 0.2); }
.glow-2 { bottom: -10%; right: -10%; background: rgba(124, 92, 219, 0.15); }

/* Geometric Accents */
.geo-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.triangle { left: 5%; bottom: 15%; }

.exclusive-badge {
  background: var(--white);
  color: var(--p-navy);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(14, 36, 79, 0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: inline-block;
}

.section-title { font-size: 3rem; margin: 25px 0; font-weight: 800; color: var(--p-navy); }
.text-accent-p { color: var(--p-blue); }
.section-subtitle { color: #556080; max-width: 650px; margin: 0 auto; line-height: 1.6; font-size: 1.1rem; }

/* Grid & Cards */
.roles-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.role-card-v4 {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 30px;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 10px 30px rgba(14, 36, 79, 0.05);
}

.role-card-v4:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(95, 135, 255, 0.15);
  border-color: var(--p-blue);
}

.role-card-v4.featured {
  background: var(--white);
  border: 2px solid var(--p-blue);
  position: relative;
  overflow: hidden;
}

.role-icon-wrapper {
  font-size: 3rem;
  color: var(--p-navy);
  margin-bottom: 25px;
}

.role-card-v4 h3 { font-size: 1.5rem; font-weight: 700; color: var(--p-navy); }

.role-features-list { list-style: none; padding: 0; margin-top: 25px; text-align: left; }
.role-features-list li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: #4a5568;
}

.role-features-list i { color: var(--p-blue); margin-right: 12px; }

/* Referral CTA Section */
.referral-cta-box {
  margin-top: 70px;
  background: var(--p-navy);
  color: white;
  border-radius: 25px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(14, 36, 79, 0.2);
}

.cta-content h4 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.cta-content p { opacity: 0.8; margin: 0; }

.btn-request-referral {
  background: linear-gradient(45deg, var(--p-blue), var(--p-purple));
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  border: none;
  white-space: nowrap;
}

.btn-request-referral:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(95, 135, 255, 0.4);
}

@media (max-width: 992px) {
  .referral-cta-box { flex-direction: column; text-align: center; padding: 40px 20px; }
  .cta-action { margin-top: 30px; }
}

/* ===== about section ===== */
:root {
  --brand-blue: #5f87ff;
  --brand-dark: #0e244f;
  --text-gray: #4b5563;
}

.about-premium-modern {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Vector Text */
.bg-vector-text {
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  color: rgba(95, 135, 255, 0.03);
  right: -50px;
  bottom: -50px;
  user-select: none;
  z-index: 0;
}

.about-split-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Heading & Text Styling */
.section-heading {
  font-size: 3.5rem;
  color: var(--brand-dark);
  line-height: 1.1;
  margin: 15px 0;
  font-weight: 800;
}

.section-heading .highlight {
  color: var(--brand-blue);
}

.meta-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tag-line {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.bfsi-pill-new {
  background: var(--brand-dark);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.brand-divider {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-dark));
  margin-bottom: 30px;
  border-radius: 10px;
}

.about-desc {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Features Styling */
.about-features {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.f-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-dark);
}

.f-item i {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

/* The Button */
.btn-brand-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-dark);
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s all ease;
  border-bottom: 4px solid #00000033;
}

.btn-brand-main:hover {
  background: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 135, 255, 0.3);
}

/* Image Handling (No Stretch) */
.about-image-area {
  position: relative;
}

.about-image-area img {
  width: 100%;
  height: auto; /* Maintains Aspect Ratio */
  border-radius: 20px;
  box-shadow: 20px 20px 0px var(--brand-blue); /* Creative Vector Shadow */
}

.floating-icon-box {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: var(--brand-blue);
  font-size: 2rem;
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .about-split-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-divider { margin: 0 auto 30px; }
  .about-features { justify-content: center; }
  .section-heading { font-size: 2.8rem; }
  .about-image-area img { box-shadow: 10px 10px 0px var(--brand-blue); }
}
/* ===== about section ===== */

:root {
  --p-purple: #7c5cdb;
  --p-navy: #0e244f;
  --p-blue: #5f87ff;
  --glass-white: rgba(255, 255, 255, 0.05);
}

/* --- Testimonial Styles --- */
:root {
  --p-navy: #0e244f;
  --p-blue: #5f87ff;
  --p-purple: #7c5cdb;
}

.testimonial-premium-redesign {
  padding: 80px 0;
  background: #f8faff;
  overflow: hidden;
}

/* Scroller Layout */
.testimonial-scroller-wrapper {
  margin-top: 50px;
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollInfinite 30s linear infinite; /* Auto Scroll */
}

/* Stop Animation on Hover */
.testimonial-scroller-wrapper:hover .scroller-track {
  animation-play-state: paused;
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 4 - 120px)); } /* Adjust based on card width + gap */
}

/* Testimonial Card Styling */
.testi-card {
  width: 350px;
  background: white;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

.testi-quote {
  font-size: 2rem;
  color: var(--p-blue);
  margin-bottom: 20px;
  opacity: 0.3;
}

.testi-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
  font-style: italic;
}

/* User Info Section */
.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testi-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--p-blue);
  object-fit: cover;
}

.user-meta strong {
  display: block;
  font-size: 1rem;
  color: var(--p-navy);
}

.user-meta span {
  font-size: 0.8rem;
  color: #718096;
}

/* HOVER EFFECT: Dark Background & Glow */
.testi-card:hover {
  background: var(--p-navy);
  transform: translateY(-15px) scale(1.03);
  border-color: var(--p-purple);
  box-shadow: 0 25px 50px rgba(14, 36, 79, 0.3);
}

.testi-card:hover p, 
.testi-card:hover .user-meta strong {
  color: white;
}

.testi-card:hover .user-meta span {
  color: rgba(255,255,255,0.6);
}

.testi-card:hover .testi-quote {
  color: var(--p-purple);
  opacity: 1;
}

/* --- Newsletter CTA Styles --- */
.cta-ultra-premium {
  padding: 80px 0 100px;
}

.cta-glass-capsule {
  background: linear-gradient(135deg, var(--p-navy) 0%, #1a3a7a 100%);
  border-radius: 50px;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: 0 20px 50px rgba(14, 36, 79, 0.2);
}

.cta-glass-capsule::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
}

.cta-mini-label {
  color: var(--p-blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.cta-content { flex: 1.2; position: relative; z-index: 2; }
.cta-content h2 { font-size: 3rem; margin-bottom: 15px; line-height: 1.2; }
.text-highlight { color: var(--p-blue); }
.cta-content p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 35px; max-width: 500px; }

/* Form Styling */
.newsletter-form-modern {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 550px;
}

.input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 20px;
}

.input-wrapper i { color: var(--p-blue); margin-right: 12px; }

.newsletter-form-modern input {
  background: transparent;
  border: none;
  color: white;
  width: 100%;
  font-size: 1rem;
  outline: none;
}

.newsletter-form-modern input::placeholder { color: rgba(255, 255, 255, 0.5); }

.btn-subscribe-premium {
  background: var(--p-blue);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(95, 135, 255, 0.3);
}

.btn-subscribe-premium:hover {
  background: white;
  color: var(--p-navy);
  transform: translateY(-2px);
}

.cta-vector-art { flex: 0.5; display: flex; justify-content: center; position: relative; z-index: 2; }
.floating-rocket { font-size: 110px; color: rgba(255,255,255,0.1); animation: floatAnim 4s infinite ease-in-out; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(-5deg); }
}

/* --- Footer Modern Redesign --- */
.footer-modern-premium {
  background: #050d1a; /* Deeper Navy */
  color: #a0aec0;
  padding: 100px 0 40px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-logo { height: 45px; margin-bottom: 25px; filter: brightness(1.1); }

.footer-brand-side p { margin-bottom: 30px; line-height: 1.8; max-width: 320px; font-size: 0.95rem; }

.social-links-footer { display: flex; gap: 12px; }
.social-links-footer a {
  width: 45px; height: 45px; border-radius: 12px; background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; color: white; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-footer a:hover { 
  background: var(--p-blue); 
  transform: translateY(-5px) rotate(8deg); 
  border-color: var(--p-blue);
}

.footer-grid-main { display: flex; justify-content: space-between; margin-bottom: 80px; }

.footer-links-group { display: flex; gap: 60px; }
.footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.1rem; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col a { transition: 0.3s; font-size: 0.95rem; text-decoration: none; color: inherit; }
.footer-col a:hover { color: var(--p-blue); padding-left: 8px; }

.footer-copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}

.copyright-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-dots { font-size: 0.85rem; opacity: 0.6; font-weight: 500; }
.footer-bottom-dots span { color: var(--p-blue); }

@media (max-width: 991px) {
  .cta-glass-capsule { padding: 50px 30px; flex-direction: column; text-align: center; border-radius: 30px; }
  .cta-content p { margin-left: auto; margin-right: auto; }
  .newsletter-form-modern { flex-direction: column; background: transparent; border: none; padding: 0; }
  .input-wrapper { background: rgba(255,255,255,0.08); padding: 18px; border-radius: 50px; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.1); }
  .btn-subscribe-premium { width: 100%; justify-content: center; padding: 18px; }
  .footer-grid-main { flex-direction: column; gap: 50px; text-align: center; }
  .footer-brand-side p { margin-left: auto; margin-right: auto; }
  .social-links-footer { justify-content: center; }
  .footer-links-group { gap: 30px; flex-wrap: wrap; justify-content: center; }
  .copyright-flex { justify-content: center; }
}

/* ===== ENHANCED RESPONSIVE STYLES ===== */

/* Mobile Navigation Enhancement */
@media (max-width: 991px) {
  .main-header {
    height: 70px;
  }

  .nav-container {
    width: 95%;
  }

  .logo {
    height: 38px;
  }

  .mobile-toggle {
    display: flex;
  }

  .menu-side {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(14, 36, 79, 0.08);
    z-index: 1999;
  }

  .menu-side.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(14, 36, 79, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 17px;
  }
}

/* Tablet Specific */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    padding: 0 30px;
  }

  .main-title-premium {
    font-size: 3.8rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Specific */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-premium {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .main-title-premium {
    font-size: 2.6rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .referral-box-container {
    padding: 12px;
    border-radius: 20px;
  }

  .referral-form {
    flex-direction: column;
    gap: 12px;
  }

  .input-group {
    width: 100%;
  }

  .input-group input {
    text-align: center;
    padding: 14px;
  }

  .btn-join {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    margin-top: 5px;
  }

  .features-premium {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card-premium {
    padding: 35px 25px;
  }

  .yorbux-exclusive-section {
    padding: 70px 0;
  }

  .roles-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .role-card-v4 {
    padding: 35px 25px;
  }

  .referral-cta-box {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .cta-content h4 {
    font-size: 1.4rem;
  }

  .btn-request-referral {
    padding: 15px 30px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .testimonial-premium-redesign {
    padding: 60px 0;
  }

  .testi-card {
    width: 300px;
    padding: 30px;
  }

  .cta-ultra-premium {
    padding: 60px 0 80px;
  }

  .cta-glass-capsule {
    border-radius: 25px;
    padding: 40px 25px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-modern-premium {
    padding: 70px 0 30px;
  }

  .footer-logo {
    height: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-title-premium {
    font-size: 2.2rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .elite-badge-mini {
    padding: 6px 16px;
  }

  .elite-badge-mini span {
    font-size: 0.75rem;
  }

  .verification-text {
    font-size: 0.85rem;
  }

  .feature-card-premium h3 {
    font-size: 1.2rem;
  }

  .feature-card-premium p {
    font-size: 0.9rem;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .footer-col h3 {
    font-size: 1rem;
  }

  .copyright-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Vector Animation Enhancements */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes rotate-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hide vectors on very small screens for performance */
@media (max-width: 576px) {
  .svg-vector,
  .f-vector,
  .geo-shape,
  .light-glow {
    opacity: 0.3;
  }

  .bg-soft-mesh {
    display: none;
  }
}

/* Print Styles */
@media print {
  .main-header,
  .footer-modern-premium,
  .cta-ultra-premium,
  .svg-vector,
  .light-glow,
  .f-vector {
    display: none;
  }

  .hero-premium {
    min-height: auto;
    padding: 40px 0;
  }
}

/* about.html */
