:root {
  width: -webkit-fill-available;
  --navy: #0a3d62;
  --gold: #f4b400;
  --gray: #6e6e6e;
  --dark-bg: #0b0d10;
}

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

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f5f7fa;
  color: #222;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ================= PRELOADER ================= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(244, 180, 0, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ================= CURSOR TRAIL ================= */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: all 0.15s ease-out;
  transform: translate(-50%, -50%);
}

/* ================= MODERN NAVBAR ================= */
.modern-nav-v2 {
  background: rgba(11, 13, 16, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.modern-nav-v2 .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: transform 0.3s ease;
}

.modern-nav-v2 .navbar-brand:hover {
  transform: scale(1.05);
}

.modern-nav-v2 .navbar-brand span {
  color: var(--gold);
  display: inline-block;
  transition: transform 0.3s ease;
}

.modern-nav-v2 .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.modern-nav-v2 .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.4s ease, left 0.4s ease;
}

.modern-nav-v2 .nav-link:hover::before,
.modern-nav-v2 .nav-link.active::before {
  width: 80%;
  left: 10%;
}

.modern-nav-v2 .nav-link:hover {
  color: #fff;
}

.nav-scrolled {
  background: rgba(11, 13, 16, 0.98) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(244, 180, 0, 0.2);
}

.nav-link.active {
  color: var(--gold) !important;
}

/* ================= HERO SECTION ================= */
.hero-modern {
  background: radial-gradient(
      1000px circle at 25% 35%,
      rgba(244, 180, 0, 0.25),
      transparent 60%
    ),
    radial-gradient(
      800px circle at 75% 25%,
      rgba(10, 61, 98, 0.2),
      transparent 65%
    ),
    linear-gradient(180deg, #0b0d10 0%, #050607 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -10%);
  }

  30% {
    transform: translate(3%, -15%);
  }

  50% {
    transform: translate(12%, 9%);
  }

  70% {
    transform: translate(9%, 4%);
  }

  90% {
    transform: translate(-1%, 7%);
  }
}

.hero-glow {
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.22), transparent 70%);
  top: -40%;
  left: -25%;
  filter: blur(100px);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(244, 180, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  background: rgba(244, 180, 0, 0.15);
  border: 1px solid rgba(244, 180, 0, 0.3);
  color: #f4b400;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 180, 0, 0.2);
}

.hero-badge:hover {
  background: rgba(244, 180, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.35);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 1.5rem 0;
  letter-spacing: -1px;
}

.hero-title .reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(-20deg);
  animation: revealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .delay-1 {
  animation-delay: 0.2s;
}

.hero-title .delay-2 {
  animation-delay: 0.4s;
}

.hero-title .gold {
  background: linear-gradient(135deg, #ffd700, #f4b400, #ffa500);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.floating-card {
  position: absolute;
  width: 220px;
  height: 140px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: floatSlow 7s ease-in-out infinite;
}

.floating-card.delay {
  top: 160px;
  left: 120px;
  animation-delay: 3.5s;
}

.hero-dashboard {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: floatSlow 10s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-dashboard:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: metricFloat 4s ease-in-out infinite;
}

.metric-1 {
  top: 15%;
  left: -8%;
  animation-delay: 0s;
}

.metric-2 {
  bottom: 15%;
  right: -8%;
  animation-delay: 2s;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* ================= BUTTONS ================= */
.btn-gold {
  background: linear-gradient(135deg, #f4b400 0%, #ffd54f 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(244, 180, 0, 0.6),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50px;
  padding: 14px 38px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.3);
}

/* ================= STATS SECTION ================= */
.stats-section {
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.05),
    rgba(10, 61, 98, 0.05)
  );
  padding: 80px 0;
}

.stat-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 10px;
}

/* ================= PROBLEM CARDS ================= */
#problems {
  background: linear-gradient(180deg, #f7f6f3 0%, #f2efe8 50%, #eeeadf 100%);
}

.problem-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.problem-card:hover::before {
  transform: translateX(0);
}

.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.problem-card:hover::after {
  opacity: 1;
}

.problem-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(244, 180, 0, 0.1);
}

.problem-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.15),
    rgba(244, 180, 0, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.problem-icon i {
  font-size: 32px;
  color: var(--navy);
  transition: transform 0.4s ease;
}

.problem-card:hover .problem-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(244, 180, 0, 0.25),
    rgba(244, 180, 0, 0.1)
  );
  box-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
}

.problem-card:hover .problem-icon i {
  transform: scale(1.1);
}

.problem-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ================= SOLUTION CARDS ================= */
.card-ui {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 42px 36px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/*.card-ui::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(244, 180, 0, 0.1), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }*/

.card-ui:hover::before {
  opacity: 1;
  transform: scale(1.1) rotate(45deg);
}

.card-ui:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 35px 90px rgba(244, 180, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(244, 180, 0, 0.3);
}

.icon {
  font-size: 52px;
  color: var(--gold);
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(244, 180, 0, 0.3));
}

.card-ui:hover .icon {
  transform: scale(1.15) rotateY(360deg);
  filter: drop-shadow(0 8px 20px rgba(244, 180, 0, 0.5));
}

/* ================= SECTION TITLE ================= */
.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.section-title::after {
  content: "";
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  animation: expandWidth 1s ease forwards;
}

@keyframes expandWidth {
  to {
    width: 80px;
  }
}

/* ================= ROI CALCULATOR ================= */
section#roi {
  background: linear-gradient(180deg, #3e2f1c 0%, #4a3721 50%, #5a4328 100%);
}

section#roi .section-title {
  color: #fff;
}

section#roi .section-title::after {
  background: linear-gradient(90deg, transparent, #ffd54f, transparent);
}

.roi-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 180, 0, 0.2);
}

#roiResult {
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
  display: inline-block;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(244, 180, 0, 0.3);
}

.roi-pulse {
  animation: roiPulse 0.4s ease;
}

@keyframes roiPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
    color: #ffd54f;
  }
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(244, 180, 0, 0.25);
}

/* ================= COMPARISON SECTION ================= */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 40px;
}

.comparison-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 38px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.comparison-card h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card li {
  margin-bottom: 12px;
  color: var(--gray);
  position: relative;
  padding-left: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.comparison-card:hover li {
  transform: translateX(5px);
}

.comparison-card.before {
  border: 2px solid #e0e0e0;
}

.comparison-card.after {
  border: 2px solid var(--gold);
  box-shadow: 0 25px 70px rgba(244, 180, 0, 0.25);
}

.comparison-card.after::before {
  content: "✨";
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 30px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
}

.comparison-wrapper:hover .before {
  opacity: 0.5;
  transform: translateY(8px) scale(0.97);
}

.comparison-wrapper:hover .after {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 35px 100px rgba(244, 180, 0, 0.35);
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-divider span {
  background: linear-gradient(135deg, var(--gold), #ffd54f);
  color: #000;
  font-weight: 800;
  padding: 18px 20px;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  animation: rotateVS 3s ease-in-out infinite;
}

@keyframes rotateVS {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

/* ================= TESTIMONIALS ================= */

section#testimonials {
  /* background: linear-gradient(180deg, #1a1a1a 0%, #2b2116 35%, #f1e9dd 100%); */
  /* background: linear-gradient(180deg, #1f1f1f 0%, #2b2b2b 45%, #3a2f22 100%); */
  background: linear-gradient(135deg, #524444, #d9b07a, #f3bd4f)

}

section#testimonials .section-title {
  color: #fff;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffd54f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  font-weight: 700;
}

.author-info h6 {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}

.author-info p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

/* ================= PRICING TABLE ================= */
.pricing-compare-wrapper {
  overflow-x: auto;
}

.pricing-compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 20px 18px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  transition: background 0.3s ease;
}

.pricing-compare-table tbody tr:hover td {
  background: rgba(244, 180, 0, 0.08);
}

.pricing-compare-table .highlight {
  background: rgba(244, 180, 0, 0.06);
  position: relative;
}

.pricing-compare-table thead .highlight {
  background: rgba(244, 180, 0, 0.15);
}

.pricing-compare-table thead .highlight::after {
  content: "Best Value";
  display: block;
  font-size: 11px;
  color: #000;
  background: var(--gold);
  border-radius: 12px;
  width: fit-content;
  margin: 8px auto 0;
  padding: 4px 10px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(244, 180, 0, 0.3);
}

.feature-col {
  text-align: left !important;
  font-weight: 600;
  color: #333;
  background: #fafafa;
  position: sticky;
  left: 0;
  z-index: 2;
}

/* ================= INVESTOR SECTION ================= */
.investor-section {
  background: radial-gradient(
      800px circle at 18% 25%,
      rgba(244, 180, 0, 0.15),
      transparent 65%
    ),
    radial-gradient(
      700px circle at 82% 75%,
      rgba(10, 61, 98, 0.28),
      transparent 65%
    ),
    #0b0d10;
  position: relative;
  overflow: hidden;
}

.investor-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(244, 180, 0, 0.15);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(244, 180, 0, 0.3);
}

.investor-subtitle {
  color: #bcbcbc;
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 16px;
}

.investor-card {
  height: 100%;
  padding: 38px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.investor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 180, 0, 0.12), transparent 60%);
  opacity: 0;
  transition: 0.45s ease;
  border-radius: 24px;
}

.investor-card:hover::before {
  opacity: 1;
}

.investor-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 100px rgba(244, 180, 0, 0.3);
  border-color: rgba(244, 180, 0, 0.4);
}

.investor-card.highlight {
  border: 2px solid rgba(244, 180, 0, 0.5);
  box-shadow: 0 35px 90px rgba(244, 180, 0, 0.4);
  transform: translateY(-8px);
}

.investor-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}

.investor-icon.primary {
  background: rgba(10, 61, 98, 0.25);
  color: #8ecbff;
}

.investor-icon.success {
  background: rgba(76, 175, 80, 0.25);
  color: #6bff8f;
}

.investor-icon.danger {
  background: rgba(244, 67, 54, 0.25);
  color: #ff8a80;
}

.investor-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.investor-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= SCROLL TO TOP ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.progress-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.progress-ring__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 3;
}

.progress-ring__circle {
  fill: none;
  stroke: #f4b400;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 8px rgba(244, 180, 0, 0.6));
}

.scroll-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f4b400, #ffd54f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(244, 180, 0, 0.5);
  transition: transform 0.3s ease;
}

.scroll-icon i {
  font-size: 18px;
  color: #000;
}

#scrollTopBtn:hover .scroll-icon {
  transform: translate(-50%, -54%) scale(1.1);
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  padding: 16px 20px;
  border-radius: 50px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  color: #fff;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 10px 50px rgba(37, 211, 102, 0.7);
  }
}

/* ================= MODAL ================= */
.modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
}

.modal-body {
  padding: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-divider {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 300px;
    margin-top: 40px;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

@media (max-width: 767px) {
  /* #scrollTopBtn {
                display: none;
            } */

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .whatsapp-btn {
    padding: 14px 18px;
  }
}
