/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f0f4fe;
  color: #0b1a2e;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  background: rgba(11, 31, 51, 0.95);
  backdrop-filter: blur(18px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span {
  color: #f5c842;
}

.logo small {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.25s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: #f5c842;
}

.nav-links .btn-nav {
  background: #f5c842;
  color: #0b1f33 !important;
  padding: 6px 20px;
  border-radius: 60px;
  font-weight: 700 !important;
  border-bottom: none !important;
  transition: 0.3s;
}

.nav-links .btn-nav:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(245, 200, 66, 0.4);
  color: #0b1f33 !important;
}

.nav-links .btn-outline-nav {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 6px 20px;
  border-radius: 60px;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: 0.3s;
}

.nav-links .btn-outline-nav:hover {
  border-color: #f5c842;
  color: #f5c842 !important;
  transform: scale(1.04);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, #0b1f33 0%, #1a3a5e 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 200, 66, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.2);
  color: #f5c842;
  padding: 4px 22px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.hero-text h1 span {
  color: #f5c842;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 16px 0 28px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.hero-stats div {
  color: rgba(255, 255, 255, 0.7);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image .globe-icon {
  font-size: 12rem;
  color: rgba(245, 200, 66, 0.08);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #f5c842;
  border: none;
  color: #0b1f33;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 60px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 28px rgba(245, 200, 66, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(245, 200, 66, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 34px;
  border-radius: 60px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #f5c842;
  color: #f5c842;
  transform: translateY(-3px);
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 56px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 48px 0 24px;
  color: #0b1f33;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 50%;
  height: 5px;
  background: #f5c842;
  border-radius: 4px;
}

.section-title .highlight {
  background: linear-gradient(135deg, #f5c842, #e6b830);
  padding: 0 14px;
  border-radius: 6px;
  color: #0b1f33;
}

/* ===== CARDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 28px 22px;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 32px rgba(0, 20, 40, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 20, 40, 0.1);
  background: #fff;
  border-color: #f5c842;
}

.card-icon {
  font-size: 2.6rem;
  color: #1a3a5e;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(245, 200, 66, 0.1);
  padding: 10px;
  border-radius: 14px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #0b1f33;
}

.card h4 {
  font-size: 1.1rem;
  color: #1a3a5e;
}

.card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f5c842;
  margin: 4px 0;
}

.card ul {
  list-style: none;
  margin-top: 12px;
}

.card ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul li i {
  color: #f5c842;
  width: 18px;
}

/* ===== BADGES ===== */
.badge-rank {
  background: #0b1f33;
  color: #f5c842;
  padding: 2px 14px;
  border-radius: 40px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 6px;
}

.badge-gold {
  background: #f5c842;
  color: #0b1f33;
  padding: 2px 16px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== TABLE ===== */
.table-wrap {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: #0b1f33;
  color: #fff;
  padding: 16px;
  font-weight: 600;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f4fe;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: #fafcff;
}

/* ===== RANK CARDS ===== */
.rank-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border-left: 5px solid #f5c842;
  border-radius: 18px;
  padding: 20px 22px;
  transition: 0.3s;
}

.rank-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.rank-card .reward {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b1f33;
  margin-top: 4px;
}

.rank-card .reward i {
  color: #f5c842;
  margin-right: 6px;
}

.rank-card.full-width {
  grid-column: 1 / -1;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e8f4;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s;
  background: #f8faff;
  margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f5c842;
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.1);
  background: #fff;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .btn-primary {
  border: none;
  width: 100%;
  justify-content: center;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info p i {
  color: #f5c842;
  width: 24px;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.auth-box {
  background: #fff;
  border-radius: 32px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.auth-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1f33;
  margin-bottom: 4px;
}

.auth-box p {
  color: #6a7a8e;
  margin-bottom: 20px;
}

.auth-box input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e8f4;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8faff;
  margin-bottom: 14px;
  transition: 0.3s;
}

.auth-box input:focus {
  border-color: #f5c842;
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 200, 66, 0.08);
  background: #fff;
}

.auth-box .btn-primary {
  width: 100%;
  justify-content: center;
  border: none;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  color: #6a7a8e;
}

.auth-link a {
  color: #f5c842;
  font-weight: 600;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 40px 0;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0b1f33;
}

.page-title span {
  color: #f5c842;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #1f3a57;
  max-width: 600px;
  margin: 12px 0 32px;
}

/* ===== COMMITMENT ===== */
.commitment {
  background: linear-gradient(135deg, #0b1f33, #1a3a5e);
  border-radius: 28px;
  padding: 44px 36px;
  color: #fff;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.commitment h2 {
  color: #f5c842;
  font-size: 2rem;
  font-weight: 800;
}

.commitment p {
  font-size: 1.1rem;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* ===== BENEFITS BOX ===== */
.benefits-box {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border-radius: 28px;
  padding: 28px 30px;
  margin: 28px 0;
  border: 1px solid rgba(245, 200, 66, 0.15);
}

.benefits-box h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.benefits-box h3 i {
  color: #f5c842;
}

.benefits-box .grid-3 div {
  padding: 6px 0;
}

.benefits-box .grid-3 div i {
  color: #f5c842;
  margin-right: 8px;
}

/* ===== DIRECT REFERRAL ===== */
.direct-referral {
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border-radius: 28px;
  padding: 28px 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(245, 200, 66, 0.15);
}

.direct-referral h3 {
  font-size: 1.8rem;
}

.direct-referral h3 i {
  color: #f5c842;
}

.direct-referral p {
  font-size: 1.2rem;
}

.note {
  margin: 16px 0 10px;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 20px 0 30px;
}

.cta-section p {
  margin-top: 14px;
  color: #1f3a57;
  font-weight: 500;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  margin-top: 20px;
}

.social-links .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links .social-icons a {
  background: #0b1f33;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 1.1rem;
}

.social-links .social-icons a:hover {
  background: #f5c842;
  color: #0b1f33;
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1f33;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 28px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer .logo {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.25s;
  display: inline-block;
  margin-bottom: 4px;
}

.footer a:hover {
  color: #f5c842;
  transform: translateX(4px);
}

.footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer .social-icons a {
  background: rgba(255, 255, 255, 0.04);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer .social-icons a:hover {
  background: #f5c842;
  color: #0b1f33;
  transform: translateY(-4px);
  border-color: #f5c842;
}

.footer .newsletter input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  border-radius: 60px;
  width: 100%;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.footer .newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer .newsletter input:focus {
  border-color: #f5c842;
  background: rgba(255, 255, 255, 0.06);
}

.footer .newsletter button {
  background: #f5c842;
  border: none;
  color: #0b1f33;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 60px;
  margin-top: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.footer .newsletter button:hover {
  background: #e6b830;
  transform: scale(1.02);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: #f5c842;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links {
    justify-content: center;
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image .globe-icon {
    font-size: 6rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom a {
    margin: 0 6px;
  }
  .auth-box {
    padding: 32px 24px;
  }
  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .card {
    padding: 18px 14px;
  }
  .commitment {
    padding: 24px 18px;
  }
  .auth-box {
    padding: 24px 18px;
  }
  .rank-card.full-width {
    grid-column: 1 / -1;
  }
}
