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

/* ================= GLOBAL IMAGE SAFETY RESET ================= */
img{
  max-width:100%;
  height:auto;
}

:root{
  --bg:#ffffff;
  --text:#1e293b;
  --card:#ffffff;
  --navy:#061a3a;
}

body.dark{
  --bg:#020617;
  --text:#e5e7eb;
  --card:#020617;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  padding-top:80px;
  transition:.3s;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  top:0;
  width:100%;
  height:80px;
  background:var(--bg);
  border-bottom:1px solid #e5e7eb;
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:100%;
}

.logo-link{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo{
  height:48px;
  max-height:48px;
  width:auto;
  display:block;
}

/* === LOGO HARD GUARANTEE (NO PATH CHANGES) === */
.logo{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: none;
  object-fit: contain;
}
/* ================= NAV ================= */
nav ul{
  display:flex;
  gap:24px;
  list-style:none;
  align-items:center;
}

.btn-nav{
  background:var(--navy);
  color:#fff;
  padding:8px 18px;
  border-radius:999px;
  transition:.3s;
}

/* ================= HERO ================= */
.hero{
  height:calc(100vh - 80px);
  position:relative;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:2.5s;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:scale(1.04);
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(2,10,28,.65),
    rgba(2,10,28,.85)
  );
}

.hero-content{
  position:relative;
  color:#fff;
  text-align:center;
  padding:20px;
}

.offer{
  background:var(--navy);
  padding:12px 30px;
  border-radius:999px;
  display:inline-block;
  margin-bottom:20px;
  transition:.3s;
}

/* ================= SECTIONS ================= */
.section{
  padding:100px 0;
}

.section.light{
  background:#f4f7fb;
}

.center{
  text-align:center;
}

/* ================= PRICING ================= */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:32px;
  margin-top:50px;
}

.pricing-card{
  background:var(--card);
  padding:45px 30px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  transition:.35s;
}

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

.pricing-card.featured{
  background:var(--navy);
  color:#fff;
}

.price-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  transition:.3s;
}

/* ================= TESTIMONIALS ================= */
.testimonial-slider{
  max-width:600px;
  margin:50px auto;
  position:relative;
}

.testimonial{
  background:var(--card);
  padding:35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
  opacity:0;
  position:absolute;
  width:100%;
  transition:1s;
}

.testimonial.active{
  opacity:1;
  position:relative;
}

.stars{
  color:#fbbf24;
  margin-bottom:10px;
}

/* ================= FOOTER ================= */
footer{
  background:#020617;
  color:#cbd5e1;
  padding:70px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

footer h4{
  color:#fff;
  margin-bottom:10px;
}

footer p{
  font-size:14px;
  line-height:1.7;
}

.footer-partner{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:25px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
}

.footer-legal{
  margin-top:40px;
  text-align:center;
  font-size:13px;
}

/* ================= FOOTER LINKS ================= */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:6px;
}

.footer-links a{
  color:#cbd5e1;
  font-size:14px;
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover{
  color:#ffffff;
  text-decoration:underline;
}

/* ================= FOOTER HIGHLIGHTS ================= */
.footer-highlights{
  grid-column:1 / -1;
  margin-bottom:40px;
}

.footer-highlights ul{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  list-style:none;
  padding:20px 25px;
  background:rgba(255,255,255,0.04);
  border-radius:18px;
}

.footer-highlights li{
  font-size:15px;
  color:#e5e7eb;
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-highlights li::before{
  content:"✓";
  color:#38bdf8;
  font-weight:700;
}
/* ===== WHY PREMIUM SECTION ===== */
.premium-why{
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
}

.premium-features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin:60px 0 90px;
}

.feature-card{
  background:var(--card);
  border-radius:22px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  transition:.35s;
}

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

.feature-card .icon{
  font-size:36px;
  margin-bottom:10px;
  display:block;
}

/* ===== PRICING ===== */
.pricing-tiers{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
  margin-bottom:10px;
}

.tier{
  background:#fff;
  border-radius:26px;
  padding:45px 35px;
  text-align:center;
  box-shadow:0 25px 55px rgba(0,0,0,.15);
  transition:.35s;
  position:relative;
}

.tier:hover{
  transform:translateY(-12px);
}

.tier.featured{
  background:var(--navy);
  color:#fff;
  transform:scale(1.05);
}

.badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#22c55e;
  color:#fff;
  padding:6px 16px;
  border-radius:999px;
}

.price{
  font-size:44px;
  font-weight:700;
  margin:15px 0;
}

.tier ul{
  list-style:none;
  padding:0;
  margin:25px 0;
}

.tier ul li{
  padding:8px 0;
  border-bottom:1px dashed rgba(0,0,0,.1);
}

.tier-btn{
  display:inline-block;
  padding:14px 34px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
}

/* ===== SUMMARY ===== */
.why-summary{
  background:rgba(255,255,255,.75);
  border-radius:28px;
  padding:50px 40px;
  text-align:center;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.summary-points{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
}

.summary-points span{
  background:#fff;
  padding:14px 24px;
  border-radius:999px;
  font-size:14px;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}

@media(max-width:768px){
  .tier.featured{
    transform:none;
  }
}

/* ================= MANAGEMENT PANEL ================= */

.panel-section{
  background:#f4f7fb;
}

.panel-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.panel-content h2{
  margin-bottom:16px;
}

.panel-lead{
  font-size:17px;
  font-weight:500;
  margin-bottom:14px;
}

.panel-description{
  font-size:15px;
  line-height:1.8;
  margin-bottom:30px;
  max-width:620px;
}

.panel-features-img{
  width:100%;
  max-width:560px;
  margin-top:10px;
}

.panel-image img{
  width:100%;
  max-width:520px;
  border-radius:22px;
  box-shadow:0 25px 55px rgba(0,0,0,.2);
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){
  .panel-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .panel-description{
    margin-left:auto;
    margin-right:auto;
  }

  .panel-features-img{
    margin-left:auto;
    margin-right:auto;
  }

  .panel-image img{
    margin:40px auto 0;
  }
}

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

/* =========================================================
   FOOTER — FINAL STABLE OVERRIDE (NO STRUCTURE CHANGES)
   ========================================================= */

/* ---------- FULL-WIDTH DARK NAVY FOR ALL FOOTER AREAS ---------- */
footer{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#061a3a;
  color:#cbd5e1;
}

/* Bottom legal strip MUST also be full width */
.footer-legal{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#061a3a;
  color:#9fb9ff;
  padding:1.4rem 1rem;
  text-align:center;
  font-size:13px;
  border-top:1px solid rgba(255,255,255,0.12);
}

/* Prevent inner containers from painting white */
footer > *,
.footer-legal > *{
  background:transparent !important;
}

.footer-brand{
  text-align:center;
}

.footer-brand .logo-link{
  display:inline-block;
}

/* ---------- FOOTER GRID (UNCHANGED STRUCTURE, JUST STABLE) ---------- */
.footer-grid{
  max-width:1200px;
  margin:0 auto;
  padding:4rem 1.5rem 3rem;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

/* ---------- BRAND BLOCK — CENTER ONLY THIS ---------- */
.footer-brand{
  text-align:center;
}

.footer-brand h3{
  color:#ffffff;
  margin-bottom:.75rem;
}

.footer-brand p{
  color:#9fb9ff;
  line-height:1.7;
  max-width:640px;
  margin:0 auto;
}

/* ---------- OTHER FOOTER HEADINGS ---------- */
footer h4{
  color:#e6edff;
  margin-bottom:10px;
  font-weight:500;
}

/* ---------- FOOTER TEXT ---------- */
footer p,
footer li{
  font-size:14px;
  line-height:1.7;
  color:#cbd5e1;
}

/* ---------- FOOTER LINKS ---------- */
.footer-links a{
  color:#a5c7ff;
  text-decoration:none;
  transition:.25s;
}

.footer-links a:hover{
  color:#e6f0ff;
  text-decoration:underline;
}

/* ---------- ICON + TEXT ALIGNMENT ---------- */
.icon-links a{
  display:flex;
  align-items:center;
  gap:.5rem;
}

/* ---------- SVG ICON SIZE + COLOR (FIXED) ---------- */
/* Utility / feature icons only */
.icon-links svg,
.footer-highlights svg{
  width:16px;
  height:16px;
  fill:#38bdf8;
  stroke:#38bdf8;
  flex-shrink:0;
}

/* ---------- FOOTER HIGHLIGHTS ---------- */
.footer-highlights{
  grid-column:1 / -1;
  margin-bottom:2.5rem;
}

.footer-highlights ul{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  padding:20px 25px;
  background:rgba(255,255,255,0.06);
  border-radius:18px;
  list-style:none;
}

.footer-highlights li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:#e6edff;
}

.footer-highlights li::before{
  content:"✓";
  color:#38bdf8;
  font-weight:700;
}

/* ---------- PAYMENT / BRAND ICONS — DO NOT TOUCH ---------- */
.payment-icons svg{
  width:auto;
  height:26px;
  fill:initial;
  stroke:initial;
}

/* ---------- FORCE 4-COLUMN LAYOUT ---------- */
.footer-columns{
  grid-template-columns:repeat(4,1fr);
}

@media (max-width: 900px){
  .footer-columns{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 520px){
  .footer-columns{
    grid-template-columns:1fr;
  }
}

/* ---------- FOOTER COLUMN SPACING ---------- */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:8px;
}

/* ---------- ICON LINKS SVG FIX ---------- */
.icon-links svg{
  width:16px;
  height:16px;
  fill:#38bdf8;
  stroke:#38bdf8;
}

/* ---------- PAYMENT ICON ALIGNMENT ---------- */
.payment-icons{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}

/* =========================================================
   BRAND-ACCURATE SVG COLORS (OVERRIDES ONLY)
   ========================================================= */

/* ---------- WhatsApp (Green) ---------- */
.icon-links a[href*="whatsapp"] svg,
.icon-links svg[aria-hidden="true"]:has(path[d*="7.6 19.2"]){
  fill:#25D366;
  stroke:#25D366;
}

/* ---------- Visa ---------- */
.payment-icons svg[aria-label="Visa"] text{
  fill:#1A1F71;
}

/* ---------- PayPal ---------- */
.payment-icons svg[aria-label="PayPal"] text{
  fill:#003087;
}

/* ---------- Mastercard ---------- */
.payment-icons svg[aria-label="Mastercard"] circle:first-child{
  fill:#EB001B; /* red */
}

.payment-icons svg[aria-label="Mastercard"] circle:last-child{
  fill:#F79E1B; /* orange */
}

/* ---------- Crypto (Neutral Accent) ---------- */
.payment-icons svg[aria-label="Crypto"] circle{
  fill:#facc15;
}


.payment-icons svg{
  height:26px;
}
/* =========================================================
   FOOTER LINK TYPOGRAPHY & INTERACTION REFINEMENT
   ========================================================= */

/* Base footer link typography */
footer a{
  color:#9fb9ff;              /* light blue */
  font-weight:400;
  letter-spacing:.2px;
  text-decoration:none;
  transition:color .25s ease, transform .15s ease;
}

/* Hover / focus */
footer a:hover,
footer a:focus-visible{
  color:#e6f0ff;              /* brighter blue */
  text-decoration:none;
}

/* Active / click */
footer a:active{
  color:#c7d7ff;
}

/* List items spacing consistency */
footer ul li{
  margin-bottom:8px;
}

/* Support links (icon + text) */
.icon-links a{
  color:#9fb9ff;
  font-weight:400;
}

/* Hover lift for support links */
.icon-links a:hover{
  color:#e6f0ff;
  transform:translateX(2px);
}

/* Payment text labels (Visa / PayPal text SVGs) */
.payment-icons text{
  fill:#9fb9ff;
  transition:fill .25s ease;
}

/* Payment hover */
.payment-icons svg:hover text{
  fill:#e6f0ff;
}

/* =========================================================
   FOOTER SPACING REFINEMENT (TOP FOOTER ONLY)
   ========================================================= */

/* Reduce overall vertical padding of top footer */
.footer-grid{
  padding:3rem 1.5rem 2rem; /* was 4rem 1.5rem 3rem */
}

/* Tighten section headings */
footer h4{
  margin-bottom:6px; /* was ~10px */
}

/* Reduce list item spacing */
.footer-links li,
.footer-col li{
  margin-bottom:5px; /* was ~8px */
}

/* Tighten spacing under lists */
.footer-links{
  margin-bottom:0;
}

/* Reduce column internal padding if present */
.footer-col{
  padding-bottom:0;
}

/* Trim space before bottom legal footer */
footer{
  padding-bottom:0;
}

/* If highlights are used above columns, tighten them */
.footer-highlights{
  margin-bottom:1.75rem; /* was ~2.5rem */
}

.shift-right {
  position: relative;
  left: -40px;
}
/* ================= MOBILE NAV FIX ================= */

.menu-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

nav ul li a{
  text-decoration:none;
  color:inherit;
}

@media(max-width:768px){

  nav ul{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:var(--bg);
    flex-direction:column;
    padding:20px;
    gap:16px;
    display:none;
  }

  nav ul.open{
    display:flex;
  }

}


/* ================= MOBILE MENU — FLUSH RIGHT ================= */
@media (max-width: 768px){

  .nav-container{
    justify-content: space-between;
  }

  .logo-link{
    margin-right: auto;
  }

  .menu-toggle{
    display:block;
    margin-left: auto;
    padding-right: 0;
    padding-left: 12px;
    font-size: 26px;
    line-height: 1;
  }

}

/* ================= MOBILE LOGO FIX ================= */

@media (max-width: 768px){
  .logo{
    height:40px;
    width:auto;
    max-height:none;
  }

  .logo-text{
    display:none !important;
  }
}


/* ================= FOOTER BRAND — MOBILE CENTER FIX ================= */
@media (max-width: 768px){

  .footer-brand{
    text-align: center;
  }

  .footer-brand .logo-link{
    display: block;          /* critical */
    width: 100%;
    text-align: center;
  }

  .footer-brand h3{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p{
    margin-left: auto;
    margin-right: auto;
  }

}

/* ================= SCROLL-TO-TOP BUTTON STYLES ================= */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 12px; /* rounded square */
  background-color: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: scale(1.1);
  background-color: #0a2c5a; /* slightly darker navy */
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 30px;
    right: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

