
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #003366;
  --secondary: #007bff;
  --accent: #00d4ff;
  --dark: #0a1929;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --gradient-primary: linear-gradient(135deg, #003366 0%, #007bff 100%);
  --gradient-accent: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  --gradient-dark: linear-gradient(180deg, #0a1929 0%, #1e293b 100%);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}

.logo-text strong {
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-register {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
}

.hamburger-line:nth-child(1) {
  top: 6px;
}

.hamburger-line:nth-child(2) {
  top: 13px;
}

.hamburger-line:nth-child(3) {
  top: 20px;
}

.hamburger-x {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--dark);
  top: 50%;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.hamburger-x::before,
.hamburger-x::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--dark);
  left: 0;
}

.hamburger-x::before {
  transform: rotate(45deg);
}

.hamburger-x::after {
  transform: rotate(-45deg);
}

.hamburger.active .hamburger-line {
  opacity: 0;
}

.hamburger.active .hamburger-x {
  opacity: 1;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 123, 255, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 24px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 1;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* TRUST SECTION */
.trust-section {
  padding: 40px 0;
  background: var(--light);
  border-bottom: 1px solid #e2e8f0;
}

.trust-text {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.trust-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

/* STEPS SECTION */
.steps-section {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}

.step-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 51, 102, 0.05);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon i {
  font-size: 28px;
  color: var(--white);
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-description {
  color: var(--gray);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--secondary);
  opacity: 0.3;
}

.step-card:last-child .step-arrow {
  display: none;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-primary);
}

.service-icon-wrapper i {
  font-size: 28px;
  color: var(--secondary);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper i {
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
}

.service-link:hover {
  gap: 12px;
}

/* CRYPTO SECTION */
.crypto-section {
  padding: 100px 0;
  background: var(--white);
}

.crypto-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

#crypto-data table {
  width: 100%;
  border-collapse: collapse;
}

#crypto-data thead {
  background: var(--gradient-primary);
}

#crypto-data thead th {
  padding: 20px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#crypto-data tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: var(--transition);
}

#crypto-data tbody tr:hover {
  background: var(--light);
}

#crypto-data tbody td {
  padding: 20px;
  font-size: 15px;
}

.crypto-loader {
  text-align: center;
  padding: 60px 20px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* PLANS SECTION */
.plans-section {
  padding: 100px 0;
  background: var(--light);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.plan-featured {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -15px;
  right: 32px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--light);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.plan-roi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.roi-value {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.plan-price {
  margin-bottom: 32px;
  overflow: hidden;
}

.price-range {
  display: flex;
  gap: 12px;
  padding: 16px 12px;
  background: var(--light);
  border-radius: var(--radius-md);
}

.price-item {
  flex: 1;
  text-align: center;
}

.price-label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  word-break: break-word;
  line-height: 1.3;
}

.price-divider {
  width: 1px;
  background: #cbd5e1;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--gray);
  font-size: 15px;
}

.plan-features i {
  color: var(--success);
  font-size: 16px;
}

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* INVESTORS SECTION */
.investors-section {
  padding: 100px 0;
  background: var(--white);
}

.investors-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.investors-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
}

.investors-track::-webkit-scrollbar {
  display: none;
}

.investor-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.investor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.investor-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.investor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investor-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.investor-badge.elite {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--dark);
}

.investor-badge.gold {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
  color: var(--white);
}

.investor-badge.platinum {
  background: linear-gradient(135deg, #c0c0c0 0%, #e5e4e2 100%);
  color: var(--dark);
}

.investor-info {
  padding: 24px;
  text-align: center;
}

.investor-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.investor-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.investor-stats {
  padding-top: 12px;
  border-top: 1px solid var(--light);
}

.investor-stats span {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 0;
  background: var(--light);
}

.testimonial-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-box {
  position: relative;
  min-height: 350px;
  width: 100%;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  pointer-events: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-slide p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 32px;
  min-height: 100px;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-nav:hover {
  background: var(--secondary);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  gap: 12px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots span.active {
  background: var(--secondary);
  width: 32px;
  border-radius: 6px;
}

/* STATS SECTION */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  opacity: 0.9;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
}
.stat-icon {
width: 60px;
height: 60px;
background: var(--gradient-accent);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
}
.stat-icon i {
font-size: 28px;
color: var(--white);
}
.stat-content {
flex: 1;
}
.stat-content .counter {
font-size: 36px;
font-weight: 700;
color: var(--white);
}
.stat-content .plus {
font-size: 24px;
color: var(--accent);
margin-left: 4px;
}
.stat-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
margin-top: 4px;
}
/* CTA SECTION */
.cta-section {
padding: 100px 0;
background: var(--gradient-primary);
text-align: center;
}
.cta-content {
max-width: 800px;
margin: 0 auto;
}
.cta-title {
font-size: clamp(32px, 4vw, 48px);
font-weight: 700;
color: var(--white);
margin-bottom: 16px;
}
.cta-text {
font-size: 20px;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
}
.cta-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.btn-primary.large,
.btn-secondary.large {
padding: 18px 40px;
font-size: 18px;
}
.btn-primary.large {
background: var(--white);
color: var(--primary);
}
.btn-secondary.large {
background: transparent;
border: 2px solid var(--white);
color: var(--white);
}
/* FOOTER */
.footer {
background: var(--dark);
color: rgba(255, 255, 255, 0.8);
}
.footer-main {
padding: 80px 0 40px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}
.footer-logo {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}
.footer-logo img {
height: 40px;
}
.footer-logo span {
font-size: 20px;
font-weight: 500;
color: var(--white);
}
.footer-logo strong {
font-weight: 700;
color: var(--accent);
}
.footer-desc {
line-height: 1.8;
margin-bottom: 24px;
}
.footer-social {
display: flex;
gap: 12px;
}
.footer-social a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
}
.footer-social a:hover {
background: var(--secondary);
transform: translateY(-3px);
}
.footer-title {
font-size: 18px;
font-weight: 600;
color: var(--white);
margin-bottom: 20px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
}
.footer-links a:hover {
color: var(--accent);
padding-left: 8px;
}
.footer-bottom {
padding: 32px 0;
text-align: center;
}
.footer-copyright {
font-size: 14px;
margin-bottom: 12px;
}
.footer-copyright a {
color: var(--accent);
}
.footer-disclaimer {
font-size: 13px;
color: rgba(255, 255, 255, 0.5);
max-width: 900px;
margin: 0 auto;
line-height: 1.6;
}
/* ACTIVITY POPUP */
.activity-popup {
position: fixed;
bottom: 30px;
left: 30px;
max-width: 350px;
padding: 20px 24px;
background: var(--white);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-xl);
border-left: 4px solid var(--success);
transform: translateX(-400px);
transition: var(--transition);
z-index: 999;
font-size: 14px;
line-height: 1.6;
}
.activity-popup.show {
transform: translateX(0);
}
/* SCROLL TO TOP */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-primary);
border: none;
border-radius: 50%;
color: var(--white);
font-size: 20px;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 999;
}
.scroll-top.visible {
opacity: 1;
visibility: visible;
}
.scroll-top:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 320px;
height: 100vh;
background: var(--white);
flex-direction: column;
padding: 100px 40px;
box-shadow: var(--shadow-xl);
transition: var(--transition);
}
.nav-links.active {
right: 0;
}
.nav-actions {
display: none;
}
.hamburger {
display: flex;
}
.hero-cta {
flex-direction: column;
}
.hero-stats {
flex-direction: column;
gap: 24px;
}
.stat-divider {
width: 80px;
height: 1px;
}
.steps-grid,
.services-grid,
.plans-grid {
grid-template-columns: 1fr;
}
.step-arrow {
display: none;
}
.investors-carousel-wrapper {
padding: 0 20px;
}
.carousel-btn {
width: 40px;
height: 40px;
}
.testimonial-slide {
padding: 40px 24px;
}
.cta-buttons {
flex-direction: column;
}
.activity-popup {
left: 20px;
right: 20px;
max-width: none;
}
}
@media (max-width: 640px) {
/* .container {
padding: 0 16px;
} */
.hero-title {
font-size: 32px;
}
.section-title {
font-size: 28px;
}
.trust-logos {
gap: 24px;
}
.trust-logos img {
height: 24px;
}
.stats-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
}
/* ANIMATIONS */
.fade-in {
animation: fadeIn 0.6s ease;
}
.slide-up {
animation: slideUp 0.6s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* PRINT STYLES */
@media print {
.navbar,
.hamburger,
.scroll-top,
.activity-popup {
display: none;
}
}


/* FIX 3: Mobile Responsiveness for Plans */
@media (max-width: 968px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .plan-card {
    margin: 0 auto;
    width: 100%;
  }
  
  .price-value {
    font-size: 16px;
  }
  
  .price-range {
    flex-direction: column;
    gap: 16px;
  }
  
  .price-divider {
    width: 100%;
    height: 1px;
  }
  
  .testimonial-slide {
    padding: 40px 24px;
  }
  
  .testimonial-slide p {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .price-value {
    font-size: 15px;
  }
  
  .roi-value {
    font-size: 40px;
  }
  
  .plan-name {
    font-size: 20px;
  }
  
  .testimonial-slide {
    padding: 32px 20px;
    min-height: 300px;
  }
  
  .testimonial-slide p {
    font-size: 16px;
    min-height: 80px;
  }
  
  .testimonial-box {
    min-height: 300px;
  }
}

/* FIX 4: Ensure container doesn't overflow on mobile */
body {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Prevent any section from breaking layout */
section {
  overflow-x: hidden;
  width: 100%;
}

/* Fix investors carousel on mobile */
@media (max-width: 640px) {
  .investors-carousel-wrapper {
    padding: 0 10px;
  }
  
  .investor-card {
    flex: 0 0 260px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .prev-btn {
    left: -10px;
  }
  
  .next-btn {
    right: -10px;
  }
}






































/* ===================================
   ADDITIONAL STYLES FOR ALL PAGES
   =================================== */

/* PAGE HEADERS */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  background: var(--gradient-primary);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  display: inline-block;
}

.page-breadcrumb a {
  color: var(--white);
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--accent);
}

.last-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

/* CONTENT SECTION */
.content-section {
  padding: 100px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text {
  max-width: 600px;
}

.text-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--gray);
}

.why-choose,
.why-stocks,
.retirement-stats {
  margin-top: 32px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
}

.why-choose h3,
.why-stocks h3,
.retirement-stats h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.check-list {
  list-style: none;
  margin-top: 16px;
}

.check-list li {
  padding: 8px 0;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list i {
  color: var(--success);
  font-size: 18px;
}

.content-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* VALUES SECTION */
.values-section {
  position: relative;
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  opacity: 0.9;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.value-card:hover,
.value-card.featured {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: var(--accent);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 36px;
  color: var(--white);
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.value-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-item {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: var(--secondary);
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.team-info p {
  color: var(--secondary);
  margin-bottom: 8px;
}

.team-info span {
  font-size: 13px;
  color: var(--gray);
}

/* CONTACT PAGE STYLES */
.contact-info-section {
  padding: 80px 0;
  background: var(--light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-info-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 24px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.contact-info-card p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-form-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-form {
  margin-top: 32px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.contact-image-wrapper {
  position: relative;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.contact-hours-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-hours-card h4 {
  margin-bottom: 16px;
  color: var(--dark);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.hours-list li:last-child {
  border-bottom: none;
}

.map-section {
  padding: 60px 0;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.faq-item {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h3 i {
  color: var(--secondary);
}

.faq-item p {
  color: var(--gray);
  line-height: 1.7;
}

/* BENEFITS & POSITIONS */
.benefits-grid,
.positions-list {
  margin-top: 60px;
}

.position-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition);
}

.position-card:hover {
  box-shadow: var(--shadow-md);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.position-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.position-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.position-meta span {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.position-meta i {
  color: var(--secondary);
}

.btn-apply {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.position-desc {
  color: var(--gray);
  line-height: 1.7;
}

/* PROCESS SECTION */
.process-steps,
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.process-step,
.timeline-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-step:hover,
.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.step-number,
.timeline-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.timeline-content h3,
.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.timeline-content p,
.process-step p {
  color: var(--gray);
  line-height: 1.7;
}

/* LEGAL PAGES */
.legal-content-section {
  padding: 60px 0 100px;
}

.legal-content-section .container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1200px;
}

.legal-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius-lg);
}

.sidebar-sticky h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.legal-nav {
  list-style: none;
}

.legal-nav li {
  margin-bottom: 12px;
}

.legal-nav a {
  display: block;
  padding: 8px 12px;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 14px;
}

.legal-nav a:hover {
  background: var(--white);
  color: var(--secondary);
}

.legal-main-content {
  max-width: 800px;
}

.legal-intro {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary);
  margin-bottom: 48px;
}

.legal-intro i {
  font-size: 40px;
  color: var(--secondary);
}

.legal-intro h2 {
  margin-bottom: 8px;
  color: var(--dark);
}

.legal-intro p {
  color: var(--gray);
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.legal-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 12px;
}

.legal-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 12px;
  color: var(--gray);
  line-height: 1.7;
}

.styled-list,
.rights-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li,
.rights-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rights-list i {
  color: var(--success);
  margin-top: 4px;
}

.info-card,
.alert-box,
.definitions-box,
.responsibility-box,
.warning-box,
.contact-box {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.info-card {
  background: var(--light);
  border-left: 4px solid var(--secondary);
}

.alert-box {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--danger);
}

.alert-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: var(--warning);
}

.alert-box.info {
  background: rgba(0, 123, 255, 0.1);
  border-left-color: var(--secondary);
}

.definitions-box,
.responsibility-box {
  background: var(--light);
  border: 2px solid #e2e8f0;
}

.security-grid,
.general-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.security-item,
.term-card {
  text-align: center;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius-md);
}

.security-item i,
.term-card i {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.security-item h4,
.term-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.security-item p,
.term-card p {
  font-size: 14px;
  color: var(--gray);
}

.contact-box {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-box h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.9);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-weight: 600;
  transition: var(--transition);
}

.email-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.legal-footer {
  margin-top: 60px;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.legal-footer h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.legal-footer p {
  color: var(--gray);
  margin-bottom: 24px;
}

.footer-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RETIREMENT CALCULATOR */
.calculator-section {
  padding: 100px 0;
  background: var(--light);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.calculator-form {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.result-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-icon i {
  font-size: 24px;
  color: var(--white);
}

.result-content {
  flex: 1;
}

.result-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.result-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

/* STAGES TIMELINE */
.stages-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.stage-item {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stage-age {
  position: absolute;
  top: -15px;
  right: 24px;
  padding: 6px 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.stage-item h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.stage-item p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.stage-item ul {
  list-style: none;
  padding-left: 0;
}

.stage-item li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--gray);
}

.stage-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* MARKET DATA */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.stock-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stock-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stock-symbol {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.stock-name {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

.stock-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

.price-change {
  font-size: 16px;
  font-weight: 600;
}

/* STRATEGIES & SECTORS */
.strategies-grid,
.sectors-grid,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.strategy-card,
.sector-card,
.category-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.strategy-card:hover,
.sector-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.strategy-icon {
width: 60px;
height: 60px;
background: rgba(0, 123, 255, 0.1);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.strategy-icon i {
font-size: 28px;
color: var(--secondary);
}
.strategy-card h3,
.sector-card h3,
.category-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
}
.strategy-card p,
.sector-card p,
.category-card p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 16px;
}
.strategy-features {
list-style: none;
padding-left: 0;
}
.strategy-features li {
padding: 6px 0 6px 20px;
position: relative;
font-size: 14px;
color: var(--gray);
}
.strategy-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success);
font-weight: bold;
}
.sector-icon,
.category-icon {
font-size: 48px;
margin-bottom: 16px;
display: block;
}
.sector-allocation {
display: inline-block;
padding: 4px 12px;
background: var(--gradient-primary);
color: var(--white);
border-radius: 50px;
font-size: 13px;
font-weight: 600;
margin-top: 12px;
}
/* PROPERTY SECTION */
.property-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 32px;
margin-top: 60px;
}
.property-card {
background: var(--white);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}
.property-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
}
.property-image {
height: 200px;
overflow: hidden;
}
.property-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.property-card:hover .property-image img {
transform: scale(1.05);
}
.property-content {
padding: 24px;
}
.property-content h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 12px;
color: var(--dark);
}
.property-content p {
color: var(--gray);
margin-bottom: 16px;
line-height: 1.7;
}
.property-features {
list-style: none;
padding-left: 0;
}
.property-features li {
padding: 6px 0 6px 20px;
position: relative;
font-size: 14px;
color: var(--gray);
}
.property-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--success);
font-weight: bold;
}
/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
.content-grid,
.contact-grid,
.calculator-wrapper {
grid-template-columns: 1fr;
}
.legal-content-section .container {
grid-template-columns: 1fr;
}
.legal-sidebar {
display: none;
}
.form-row {
grid-template-columns: 1fr;
}
.stages-timeline,
.process-steps {
grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.page-header {
padding: 120px 0 60px;
}
.content-section,
.values-section,
.features-section,
.benefits-section {
padding: 60px 0;
}
.contact-hours-card {
position: relative;
bottom: 0;
left: 0;
right: 0;
margin-top: 20px;
}
}




















































































/* ===================================
   AUTHENTICATION PAGES STYLES
   Login & Register Pages
   =================================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--light);
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

/* Left Side - Branding */
.auth-branding {
  background: var(--gradient-primary);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-branding::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/></svg>') repeat;
  opacity: 0.1;
}

.branding-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand-logo img {
  height: 60px;
  width: auto;
}

.brand-logo h1 {
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
}

.brand-logo strong {
  font-weight: 700;
}

.branding-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.branding-content > p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.stat-item span {
  font-size: 12px;
  opacity: 0.8;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.auth-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.auth-features .feature-item i {
  font-size: 20px;
}

.auth-features .feature-item span {
  font-size: 14px;
}

/* Right Side - Form */
.auth-form-side {
  padding: 60px 50px;
  display: flex;
  align-items: center;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 450px;
}

.form-header {
  margin-bottom: 32px;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--gray);
  font-size: 15px;
}

/* Alert Messages */
.alert-container {
  margin-bottom: 24px;
}

.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 12px;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

.alert i {
  font-size: 18px;
}

/* Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--gray);
  font-size: 16px;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.input-wrapper.error input {
  border-color: var(--danger);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.password-toggle:hover {
  color: var(--secondary);
}

.password-toggle i {
  font-size: 18px;
}

/* Password Strength Indicator */
.password-strength {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.strength-bar {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-bar.weak {
  width: 25%;
  background: var(--danger);
}

.strength-bar.medium {
  width: 50%;
  background: var(--warning);
}

.strength-bar.good {
  width: 75%;
  background: #3b82f6;
}

.strength-bar.strong {
  width: 100%;
  background: var(--success);
}

.form-hint {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -8px 0 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.forgot-link,
.link-primary {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  transition: var(--transition);
}

.forgot-link:hover,
.link-primary:hover {
  color: var(--primary);
}

/* Submit Button */
.btn-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.form-footer p {
  font-size: 14px;
  color: var(--gray);
}

/* Divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.form-divider span {
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
}

/* Social Login */
.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.social-btn:hover {
  border-color: var(--secondary);
  background: var(--light);
}

.social-btn i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .auth-container {
    grid-template-columns: 1fr;
  }

  .auth-branding {
    display: none;
  }

  .auth-form-side {
    padding: 40px 24px;
  }

  .auth-form-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .auth-page {
    padding: 0;
  }

  .auth-container {
    border-radius: 0;
    box-shadow: none;
  }

  .auth-form-side {
    padding: 32px 20px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .social-login {
    grid-template-columns: 1fr;
  }

  .auth-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}