:root {
  --teal: #009DBE;
  --teal-dk: #0089a6;
  --gold: #C9A84C;
  --white: #FFFFFF;
}

* { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; box-sizing: border-box; }

body { overflow-x: hidden; background: #f8fafc; color: var(--teal); }

.min-vh-80 { min-height: 80vh; }

.text-red { color: var(--gold); }

/* ─── NAV ─── */
.navbar {
  background: var(--teal) !important;
  padding: 0;
  min-height: 64px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0,157,190,.92) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.brand-icon img { width: 100%; height: 100%; object-fit: contain; }

.brand-text .name { font-size: .95rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.brand-text .tagline { font-size: .6rem; color: rgba(255,255,255,.7); letter-spacing: .3px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-size: .8rem;
  font-weight: 500;
  padding: 20px 16px !important;
  transition: color .2s;
  position: relative;
  letter-spacing: .3px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.nav-btn {
  font-size: .78rem; font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
}

.nav-btn-outline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  background: transparent;
}

.nav-btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

.nav-btn-solid {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.nav-btn-solid:hover { background: var(--teal); color: var(--white); }

.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px 12px;
}

/* ─── HERO ─── */
.hero-section {
  background: var(--teal);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,.06);
  bottom: 30%; right: 20%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-30px,20px); } }
@keyframes float2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(20px,-30px); } }
@keyframes float3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-15px,-15px) scale(1.1); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(201,168,76,.08);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 520px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
}

.hero-btn-primary:hover {
  background: #e02612;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.4);
  color: var(--white);
}

.hero-btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-metrics strong { font-size: 1.2rem; color: var(--white); display: block; }
.hero-metrics > div { font-size: .75rem; color: rgba(255,255,255,.5); }
.hero-metrics .divider { width: 1px; height: 30px; background: rgba(255,255,255,.1); }

.hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.06);
  position: relative;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.1); } 50% { box-shadow: 0 0 0 30px rgba(201,168,76,0); } }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  font-size: .8rem;
  color: var(--teal);
  animation: floatCard 6s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card i { font-size: 1.2rem; color: var(--teal); }

.card-1 { top: 20px; right: 10px; animation-delay: 0s; }
.card-2 { bottom: 40px; left: 0; animation-delay: -2s; }
.card-3 { bottom: 20px; right: 40px; animation-delay: -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── DASHBOARD ─── */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
}

.section-sub {
  font-size: .85rem;
  color: rgba(0,157,190,.55);

  color: var(--teal);
  margin-bottom: 6px;
}

.dash-desc {
  font-size: .78rem;
  color: rgba(0,157,190,.6);
  line-height: 1.6;
  margin-bottom: 14px;
}

.dash-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,157,190,.06);
}

.dash-count {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(0,157,190,.5);
}

.dash-arrow {
  font-size: 1.1rem;
  color: rgba(0,157,190,.2);
  transition: all .3s;
}

.dash-card:hover .dash-arrow {
  color: var(--card-color, var(--teal));
  transform: translateX(4px);
}

/* ─── FEATURES ─── */
.features-section {
  padding: 70px 0;
  background: var(--white);
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 18px;
  border: 2px solid rgba(0,157,190,.06);
  background: var(--white);
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,157,190,.08);
  border-color: rgba(0,157,190,.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.1); }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: .8rem;
  color: rgba(0,157,190,.6);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta-section {
  padding: 60px 0;
  background: #f8fafc;
}

.cta-card {
  background: var(--teal);
  border-radius: 24px;
  padding: 48px 50px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 480px;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 30px rgba(201,168,76,.3);
  transition: all .3s;
}

.btn-cta-primary:hover {
  background: #e02612;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
  color: var(--white);
}

.btn-cta-secondary {
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: all .3s;
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

.cta-graphic {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  animation: floatCta 4s ease-in-out infinite;
}

@keyframes floatCta { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ─── FOOTER ─── */
footer {
  background: #0a1f2e;
  color: var(--white);
  padding: 50px 0 30px;
}

footer a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold); }

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .2s;
}

.footer-social:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.footer-divider {
  border-color: rgba(255,255,255,.06);
  margin: 28px 0 20px;
}

/* ─── SCROLL REVEAL ─── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.2,.64,1);
}

.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 10px 16px !important; }
  .hero-section { padding: 80px 0 60px; }
}

@media (max-width: 768px) {
  .hero-section { padding: 70px 0 50px; }
  .hero-title { font-size: 2rem; }
  .hero-metrics { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-metrics .divider { display: none; }
  .hero-visual { min-height: 220px; }
  .hero-circle { width: 180px; height: 180px; }
  .floating-card { font-size: .7rem; padding: 8px 14px; }
  .card-1 { top: 0; right: 0; }
  .card-2 { bottom: 20px; left: 0; }
  .card-3 { bottom: 0; right: 10px; }
  .cta-card { padding: 32px 24px; }
}
