*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050713;
  color:white;
  overflow-x:hidden;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:22px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(5,7,19,0.65);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:24px;
  font-weight:900;
  letter-spacing:2px;
  background:linear-gradient(90deg,#00d4ff,#8f5cff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.nav-links a{
  color:#d8d8e8;
  text-decoration:none;
  margin-left:28px;
  font-size:14px;
}

.hero{
  min-height:100vh;
  padding:140px 8% 80px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:60px;
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(0,212,255,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(143,92,255,0.20), transparent 35%),
    #050713;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:0.55;
}

.orb1{
  width:280px;
  height:280px;
  background:#00d4ff;
  top:18%;
  left:5%;
}

.orb2{
  width:320px;
  height:320px;
  background:#8f5cff;
  right:8%;
  bottom:10%;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(0,212,255,0.45);
  border-radius:999px;
  color:#8eeeff;
  background:rgba(0,212,255,0.08);
  margin-bottom:25px;
}

.hero h1{
  font-size:72px;
  line-height:1.02;
  max-width:850px;
  margin-bottom:25px;
  background:linear-gradient(90deg,#ffffff,#9fefff,#9d7cff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.hero-text{
  max-width:680px;
  color:#c8c9d6;
  font-size:20px;
  line-height:1.7;
}

.hero-buttons{
  margin-top:38px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 26px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
}

.primary-btn{
  color:white;
  background:linear-gradient(90deg,#00d4ff,#7b61ff);
  box-shadow:0 0 35px rgba(0,212,255,0.35);
}

.secondary-btn{
  color:#e8e8ff;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.05);
}

.dashboard-card{
  position:relative;
  z-index:5;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,0.13),rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 30px 100px rgba(0,0,0,0.55);
  backdrop-filter:blur(24px);
}

.card-top{
  display:flex;
  gap:8px;
  margin-bottom:28px;
}

.card-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#00d4ff;
}

.dashboard-card h3{
  font-size:28px;
  margin-bottom:28px;
}

.kpi-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:28px;
}

.kpi-row div,
.mini-grid div{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px;
  border-radius:18px;
}

.kpi-row p{
  color:#aeb0c2;
  font-size:13px;
  margin-bottom:8px;
}

.kpi-row h2{
  color:#8eeeff;
}

.chart{
  height:230px;
  display:flex;
  align-items:end;
  gap:18px;
  padding:25px;
  border-radius:24px;
  background:rgba(0,0,0,0.28);
  margin-bottom:22px;
}

.chart div{
  flex:1;
  border-radius:12px 12px 0 0;
  background:linear-gradient(180deg,#00d4ff,#7b61ff);
  box-shadow:0 0 25px rgba(0,212,255,0.35);
}

.mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  color:#cfd1df;
}

.mini-grid b{
  float:right;
  color:#8eeeff;
}

.section{
  padding:100px 8%;
  text-align:center;
}

.section h2{
  font-size:46px;
  margin-bottom:16px;
}

.section-subtitle{
  color:#b6b8c8;
  margin-bottom:50px;
  font-size:18px;
}

.cards,
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.product-card,
.price-card{
  text-align:left;
  min-height:260px;
  padding:32px;
  border-radius:26px;
  background:rgba(255,255,255,0.055);
  border:1px solid rgba(255,255,255,0.12);
  transition:0.3s;
}

.product-card:hover,
.price-card:hover{
  transform:translateY(-10px);
  border-color:#00d4ff;
  box-shadow:0 25px 80px rgba(0,212,255,0.12);
}

.product-card span{
  color:#00d4ff;
  font-size:13px;
  font-weight:800;
}

.product-card h3,
.price-card h3{
  margin:22px 0 14px;
  font-size:27px;
}

.product-card p,
.price-card p{
  color:#c5c7d8;
  line-height:1.7;
}

.active{
  background:linear-gradient(145deg,rgba(0,212,255,0.16),rgba(123,97,255,0.08));
}

.dark-section{
  background:
    radial-gradient(circle at center,rgba(123,97,255,0.16),transparent 40%),
    #080b1a;
}

.feature-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.feature-grid div{
  padding:26px;
  border-radius:20px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:#e6e7f5;
}

.price-card h2{
  font-size:36px;
  margin-bottom:15px;
  color:#8eeeff;
}

.featured{
  transform:scale(1.05);
  border-color:#00d4ff;
  background:linear-gradient(145deg,rgba(0,212,255,0.16),rgba(123,97,255,0.12));
}

footer{
  padding:80px 8%;
  text-align:center;
  background:#03040b;
  border-top:1px solid rgba(255,255,255,0.08);
}

footer h2{
  font-size:36px;
  margin-bottom:14px;
}

footer p{
  color:#b8bac8;
  margin-bottom:28px;
}

footer a{
  color:white;
  text-decoration:none;
  padding:15px 28px;
  border-radius:14px;
  background:linear-gradient(90deg,#00d4ff,#7b61ff);
}

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

  .hero h1{
    font-size:48px;
  }

  .cards,
  .pricing-grid,
  .feature-grid{
    grid-template-columns:1fr;
  }

  .nav-links{
    display:none;
  }
}

/* ========================= */
/* AMI WEALTH PAGE */
/* ========================= */

.wealth-hero{
  min-height:100vh;
  padding:140px 8% 80px;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:55px;
  align-items:center;
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(0,212,255,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(123,97,255,0.20), transparent 35%),
    #050713;
}

.wealth-hero-content,
.wealth-hero-image{
  position:relative;
  z-index:5;
}

.wealth-hero-content h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:24px;
  background:linear-gradient(90deg,#ffffff,#00d4ff,#8f5cff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.wealth-hero-content p{
  color:#c8c9d6;
  font-size:20px;
  line-height:1.7;
  max-width:680px;
}

.wealth-hero-image img{
  width:100%;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 70px rgba(0,212,255,0.18),
    0 0 130px rgba(123,97,255,0.12);
}

.wealth-section{
  padding:90px 8%;
  background:#040611;
}

.feature-showcase{
  display:grid;
  grid-template-columns:0.7fr 1.3fr;
  gap:50px;
  align-items:center;
  margin-bottom:110px;
}

.feature-showcase.reverse{
  grid-template-columns:1.3fr 0.7fr;
}

.feature-showcase.reverse .feature-text{
  order:2;
}

.feature-showcase.reverse .feature-image{
  order:1;
}

.feature-text span{
  color:#00d4ff;
  font-size:22px;
  font-weight:900;
}

.feature-text h2{
  font-size:46px;
  margin:14px 0 18px;
  background:linear-gradient(90deg,#ffffff,#00d4ff,#8f5cff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.feature-text p{
  color:#c4c7d8;
  font-size:19px;
  line-height:1.8;
}

.feature-image img{
  width:100%;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 0 45px rgba(0,212,255,0.10),
    0 0 90px rgba(123,97,255,0.08);
  transition:0.35s ease;
}

.feature-image img:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:
    0 0 70px rgba(0,212,255,0.20),
    0 0 130px rgba(123,97,255,0.14);
}

.wealth-wide-image{
  padding:90px 8%;
  background:
    radial-gradient(circle at center,rgba(0,212,255,0.10),transparent 42%),
    #050713;
}

.wealth-wide-image img{
  width:100%;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 0 100px rgba(0,212,255,0.12);
}

.wealth-cta{
  position:relative;
  padding:90px 8%;
  background:#03040b;
}

.wealth-cta img{
  width:100%;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.14);
  opacity:0.9;
}

.cta-overlay{
  margin-top:35px;
  text-align:center;
}

.cta-overlay h2{
  font-size:40px;
  margin-bottom:25px;
}

.cta-overlay a{
  display:inline-block;
  color:white;
  text-decoration:none;
  padding:16px 32px;
  border-radius:14px;
  background:linear-gradient(90deg,#00d4ff,#7b61ff);
  font-weight:800;
  box-shadow:0 0 35px rgba(0,212,255,0.28);
}

@media(max-width:900px){
  .wealth-hero,
  .feature-showcase,
  .feature-showcase.reverse{
    grid-template-columns:1fr;
  }

  .feature-showcase.reverse .feature-text,
  .feature-showcase.reverse .feature-image{
    order:initial;
  }

  .wealth-hero-content h1{
    font-size:46px;
  }

  .feature-text h2{
    font-size:36px;
  }
}

.product-link{
  text-decoration:none;
  color:white;
  display:block;
}


/* ========================= */
/* PREMIUM FOOTER + WHATSAPP */
/* ========================= */

.premium-footer{
  padding:70px 8% 35px;
  background:#03040b;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr 1fr;
  gap:46px;
  text-align:left;
  max-width:1400px;
  margin:0 auto;
}

.premium-footer h2{
  color:#ffffff;
  font-size:34px;
  line-height:1.15;
  margin-bottom:20px;
}

.premium-footer h3{
  color:#ffffff;
  font-size:22px;
  margin-bottom:18px;
}

.premium-footer p,
.premium-footer a{
  display:block;
  color:#c8d2e3;
  line-height:1.75;
  margin-bottom:10px;
  text-decoration:none;
  font-size:15px;
  background:none !important;
  padding:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.premium-footer a:hover{
  color:#7dd3fc;
}

.footer-bottom{
  max-width:1400px;
  margin:42px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  color:#8b90a3;
  font-size:13px;
}

.whatsapp-float{
  position:fixed;
  width:62px;
  height:62px;
  bottom:95px;
  right:28px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  box-shadow:0 18px 45px rgba(37,211,102,0.35);
  transition:0.3s ease;
  text-decoration:none;
}

.whatsapp-float:hover{
  transform:translateY(-6px) scale(1.06);
  box-shadow:0 24px 65px rgba(37,211,102,0.48);
}

.whatsapp-float img{
  width:34px;
  height:34px;
}

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

  .premium-footer{
    padding:55px 6% 30px;
  }
}


.policy-page{
  min-height:100vh;
  padding:140px 8% 80px;
  background:
    radial-gradient(circle at top left, rgba(0,212,255,0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(143,92,255,0.16), transparent 35%),
    #050713;
}

.policy-container{
  max-width:1050px;
  margin:0 auto;
  padding:42px;
  border-radius:28px;
  background:rgba(255,255,255,0.055);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 30px 90px rgba(0,0,0,0.34);
}

.policy-container h1{
  font-size:46px;
  margin-bottom:18px;
  background:linear-gradient(90deg,#ffffff,#00d4ff,#8f5cff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}

.policy-container h2{
  color:#ffffff;
  font-size:24px;
  margin:30px 0 12px;
}

.policy-container p,
.policy-container li{
  color:#c8c9d6;
  line-height:1.8;
  font-size:16px;
}

.policy-container ul{
  padding-left:22px;
}

.policy-card{
  margin-top:22px;
  padding:22px;
  border-radius:18px;
  background:rgba(0,212,255,0.06);
  border:1px solid rgba(0,212,255,0.16);
}


/* =====================================================
   AMI SAFE MOBILE HAMBURGER PATCH
   Keeps desktop unchanged, mobile menu works cleanly.
===================================================== */

.ami-hamburger{
  display:none;
}

@media(max-width:900px){
  .navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    min-height:74px;
    padding:18px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }

  .navbar .logo{
    position:relative;
    z-index:1002;
  }

  .ami-hamburger{
    display:flex;
    width:44px;
    height:44px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.07);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    position:relative;
    z-index:1002;
    margin-left:auto;
    flex:0 0 auto;
    -webkit-tap-highlight-color:transparent;
  }

  .ami-hamburger span{
    width:22px;
    height:2px;
    background:#ffffff;
    border-radius:999px;
    display:block;
    transition:.25s ease;
  }

  .navbar.ami-menu-open .ami-hamburger span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .navbar.ami-menu-open .ami-hamburger span:nth-child(2){
    opacity:0;
  }
  .navbar.ami-menu-open .ami-hamburger span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .navbar .nav-links{
    position:absolute;
    left:0;
    right:0;
    top:74px;
    width:100%;
    display:none;
    flex-direction:column;
    gap:12px;
    align-items:stretch;
    padding:16px 7% 22px;
    background:rgba(5,7,19,.985);
    border-bottom:1px solid rgba(255,255,255,.10);
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    z-index:1001;
  }

  .navbar.ami-menu-open .nav-links{
    display:flex;
  }

  .navbar .nav-links a{
    margin-left:0;
    width:100%;
    padding:15px 18px;
    border-radius:16px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    font-size:16px;
    font-weight:800;
    color:#f1f5f9;
  }

  .hero{
    padding-top:150px;
  }

  .hero-left,
  .hero-buttons,
  .hero-buttons a,
  .primary-btn,
  .secondary-btn{
    position:relative;
    z-index:20;
    pointer-events:auto;
  }

  .dashboard-card,
  .orb{
    pointer-events:none;
  }
}

