

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─────────────────────────────────
   RESET
───────────────────────────────── */

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

/* ─────────────────────────────────
   ROOT VARIABLES
───────────────────────────────── */

:root{

  --navy:#03112b;
  --navy-mid:#07224f;

  --blue:#1a56db;
  --blue-light:#3b82f6;

  --gold:#f5a623;
  --gold-dim:#c8861c;

  --green:#16a34a;
  --green-pale:#dcfce7;

  --slate:#64748b;
  --slate-dark:#334155;

  --white:#ffffff;
  --off:#f1f5fb;

  --card-bg:rgba(255,255,255,0.96);
  --border:rgba(3,17,43,0.08);

  --shadow-sm:0 4px 20px rgba(3,17,43,0.06);
  --shadow-md:0 12px 48px rgba(3,17,43,0.10);
  --shadow-lg:0 24px 80px rgba(3,17,43,0.14);

  --radius-lg:24px;
  --radius-xl:32px;

  --ease:cubic-bezier(.22,.68,0,1.2);
}

/* ─────────────────────────────────
   BASE
───────────────────────────────── */

html{
  scroll-behavior:smooth;
}

body{
  font-family:'DM Sans',sans-serif;
  background:var(--off);
  color:var(--navy);
  overflow-x:hidden;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

/* ─────────────────────────────────
   SCROLLBAR
───────────────────────────────── */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#dfe7f3;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--blue),#1648c2);
  border-radius:999px;
}

/* ─────────────────────────────────
   NOISE OVERLAY
───────────────────────────────── */

body::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:0.25;

  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────
   PAGE LOADER
───────────────────────────────── */

.page-loader{
  position:fixed;
  inset:0;
  background:#fff;
  z-index:99999;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:opacity .5s ease,visibility .5s ease;
}

.page-loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-ring{
  width:60px;
  height:60px;

  border-radius:50%;
  border:4px solid rgba(26,86,219,0.15);
  border-top-color:var(--blue);

  animation:spin 1s linear infinite;
}

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

/* ─────────────────────────────────
   CURSOR GLOW
───────────────────────────────── */

.cursor-glow{
  position:fixed;
  width:220px;
  height:220px;

  border-radius:50%;
  pointer-events:none;

  background:radial-gradient(circle,
    rgba(26,86,219,0.12),
    transparent 70%);

  transform:translate(-50%,-50%);
  z-index:0;
}


.reveal.active,
.reveal.show,
.reveal.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

main {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* ─────────────────────────────────
   AMBIENT GLOWS
───────────────────────────────── */

.glow{
  position:fixed;
  border-radius:50%;
  filter:blur(160px);
  pointer-events:none;
  z-index:0;
}

.glow-1{
  width:640px;
  height:640px;

  top:-200px;
  left:-150px;

  background:radial-gradient(circle,
    rgba(26,86,219,0.14),
    transparent 70%);
}

.glow-2{
  width:500px;
  height:500px;

  bottom:10%;
  right:-120px;

  background:radial-gradient(circle,
    rgba(245,166,35,0.10),
    transparent 70%);
}

.glow-3{
  width:400px;
  height:400px;

  top:60%;
  left:30%;

  background:radial-gradient(circle,
    rgba(22,163,74,0.08),
    transparent 70%);
}

/* ─────────────────────────────────
   NAVBAR
───────────────────────────────── */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.98);
  backdrop-filter:saturate(130%) blur(12px);
  -webkit-backdrop-filter:saturate(130%) blur(12px);
  border-bottom:1px solid rgba(16,24,40,.08);
  box-shadow:0 1px 0 rgba(16,24,40,.04);
  transition:box-shadow .28s ease, border-color .28s ease;
}

.navbar.scrolled{
  box-shadow:0 14px 38px rgba(16,24,40,.08);
}

.nav-container{
  max-width:1220px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* ─────────────────────────────────
   HAMBURGER
───────────────────────────────── */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:2px;
  border-radius:10px;
  background:var(--navy);
}

/* ─────────────────────────────────
   MOBILE MENU
───────────────────────────────── */

.mobile-menu{
  position:fixed;
  inset:0;

  background:rgba(241,245,251,0.98);

  backdrop-filter:blur(18px);

  z-index:9999;

  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:12px;
}

.mobile-menu.open{
  display:flex;
}

.mobile-menu a{
  text-decoration:none;

  font-family:'DM Serif Display',serif;
  font-size:30px;

  color:var(--navy);

  padding:12px 30px;
  border-radius:16px;

  transition:.25s;
}

.mobile-menu a:hover{
  background:rgba(26,86,219,0.08);
  color:var(--blue);
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;

  border:none;
  background:none;

  font-size:34px;
  cursor:pointer;
}

/* ─────────────────────────────────
   HERO
───────────────────────────────── */

.hero{
  position:relative;
  z-index:1;

  max-width:900px;
  margin:auto;

  padding:160px 28px 80px;

  text-align:center;
}

/* BADGE */

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#fff;

  border:1px solid rgba(26,86,219,0.10);
  border-radius:999px;

  padding:10px 20px;

  margin-bottom:24px;

  box-shadow:var(--shadow-sm);

  font-size:14px;
  font-weight:700;
}

.pulse-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);

  animation:pulse 1.5s infinite;
}

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

  50%{
    transform:scale(1.5);
    opacity:.5;
  }
}

/* EYEBROW */

.hero-eyebrow{
  display:inline-block;

  background:rgba(26,86,219,0.08);

  border:1px solid rgba(26,86,219,0.12);
  border-radius:999px;

  padding:8px 18px;

  color:var(--blue);

  font-size:13px;
  font-weight:700;

  text-transform:uppercase;
  letter-spacing:.8px;

  margin-bottom:26px;
}

/* TITLE */

.hero h1{
  font-family:'DM Serif Display',serif;

  font-size:clamp(46px,7vw,76px);
  line-height:1.05;

  letter-spacing:-2px;

  margin-bottom:24px;
}

.hero h1 em{
  color:var(--blue);
  font-style:italic;
}

/* DESC */

.hero p{
  max-width:680px;
  margin:auto auto 40px;

  color:var(--slate);

  font-size:18px;
  line-height:1.8;
}

/* HERO BUTTONS */

.hero-cta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;

  margin-bottom:42px;
}

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  font-size:15px;
  font-weight:700;

  padding:15px 28px;

  border-radius:16px;

  transition:.3s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--blue),#1648c2);
  color:#fff;

  box-shadow:0 10px 30px rgba(26,86,219,0.25);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  background:#fff;
  color:var(--navy);

  border:1px solid var(--border);
}

.btn-secondary:hover{
  transform:translateY(-3px);
}

/* HERO META */

.hero-meta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:28px;
}

.hero-meta-item{
  display:flex;
  align-items:center;
  gap:8px;

  color:var(--slate);

  font-size:14px;
  font-weight:600;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
}

/* ─────────────────────────────────
   BILLING TOGGLE
───────────────────────────────── */
.toggle-wrap{
  position:relative;
  z-index:5;
  display:flex;
  justify-content:center;
  margin-bottom:60px;
}

.toggle-inner{
  position:relative;
  z-index:6;
  display:inline-flex;
  width:fit-content;
  gap:5px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:5px;
  box-shadow:var(--shadow-sm);
}

.toggle-btn{
  position:relative;
  z-index:7;
  flex:0 0 auto;
  border:none;
  background:transparent;
  padding:10px 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:var(--slate);
  cursor:pointer;
  pointer-events:auto;
  transition:background .25s ease,color .25s ease;
}

.toggle-btn.active{
  background: var(--navy);
  color: #fff;
}

.save-badge{
  background:var(--green-pale);
  color:var(--green);
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  pointer-events:none;
}

/* ─────────────────────────────────
   PLANS
───────────────────────────────── */

.plans-section{
  position:relative;
  z-index:1;

  max-width:1200px;
  margin:auto;

  padding:0 28px 100px;
}

.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* CARD */

.plan-card{
  position:relative;
  overflow:hidden;

  background:var(--card-bg);

  border:1px solid var(--border);
  border-radius:var(--radius-xl);

  padding:40px 34px;

  box-shadow:var(--shadow-sm);

  transition:.35s;
}

.plan-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-lg);
}

/* SPOTLIGHT */

.plan-card::after{
  content:'';

  position:absolute;
  inset:0;

  background:
  radial-gradient(
    600px circle at var(--mx,50%) var(--my,50%),
    rgba(26,86,219,0.06),
    transparent 45%
  );

  opacity:0;
  transition:.3s;
}

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

/* FEATURED */

.plan-card.featured{
  background:var(--navy);
  color:#fff;
  padding-top:52px;
  overflow:visible;
  transform:translateY(-8px);
}

.plan-card.featured:hover{
  transform:translateY(-18px);
}

.plan-card.featured .plan-name,
.plan-card.featured .price{
  color:#fff;
}

.plan-card.featured .plan-desc,
.plan-card.featured .period,
.plan-card.featured .features li{
  color:rgba(255,255,255,0.72);
}

.plan-card.featured .divider{
  background:rgba(255,255,255,0.10);
}

.plan-card.featured .plan-icon-wrap{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.12);
  box-shadow:none;
}

.plan-card.featured .plan-top{
  align-items:center;
  margin-bottom:22px;
}

.plan-card.featured .plan-rating{
  color:var(--gold);
  line-height:1.3;
  text-align:right;
}

/* BADGE */

.popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  right:auto;
  z-index:3;
  transform:translateX(-50%);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:max-content;
  white-space:nowrap;

  background:linear-gradient(135deg,var(--gold),var(--gold-dim));
  color:#fff;

  padding:9px 18px;
  border-radius:999px;

  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  line-height:1.2;
  box-shadow:0 10px 22px rgba(245,166,35,.28);
}

/* PLAN TOP */

.plan-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.plan-icon-wrap{
  width:58px;
  height:58px;
  flex-shrink:0;
  border-radius:18px;
  background:var(--off);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.plan-rating{
  font-size:13px;
  font-weight:700;
  color:var(--gold);
}

/* TITLE */

.plan-name{
  font-family:'DM Serif Display',serif;
  font-size:32px;

  margin-bottom:10px;
}

.plan-desc{
  color:var(--slate);

  font-size:15px;
  line-height:1.7;

  margin-bottom:24px;
}

/* PRICE */

.price-row{
  display:flex;
  align-items:flex-start;
  gap:4px;
}

.currency{
  font-size:24px;
  font-weight:700;

  color:var(--blue);

  margin-top:10px;
}

.price{
  font-family:'DM Serif Display',serif;
  font-size:58px;
  line-height:1;
}

.period{
  margin:8px 0 24px;
  color:var(--slate);
}

/* DIVIDER */

.divider{
  height:1px;
  background:var(--border);

  margin-bottom:24px;
}

/* FEATURES */

.features{
  list-style:none;
  margin-bottom:34px;
}

.features li{
  display:flex;
  gap:12px;

  padding:10px 0;

  color:var(--slate-dark);

  border-bottom:1px solid rgba(3,17,43,0.05);

  font-size:15px;
  line-height:1.5;
}

.features li:last-child{
  border-bottom:none;
}

.check-icon{
  width:22px;
  height:22px;

  flex-shrink:0;

  border-radius:50%;

  background:var(--green-pale);
  color:var(--green);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  font-weight:800;
}

/* BUTTONS */

.plan-btn{
  display:block;

  text-align:center;
  text-decoration:none;

  padding:15px 20px;

  border-radius:16px;

  font-size:15px;
  font-weight:700;

  transition:.3s;
}

.plan-btn:hover{
  transform:translateY(-3px);
}

.plan-btn-outline{
  border:1.5px solid rgba(3,17,43,0.12);
  color:var(--navy);
  background:transparent;
}

.plan-btn-outline:hover{
  border-color:var(--blue);
  color:var(--blue);
}

.plan-btn-primary{
  background:linear-gradient(135deg,var(--blue),#1648c2);
  color:#fff;
}

.plan-btn-gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-dim));
  color:#fff;
}

/* ─────────────────────────────────
   STATS SECTION
───────────────────────────────── */

.stats-section{
  position:relative;
  z-index:1;

  padding:100px 28px;
}

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

.stats-bg-blur{
  position:absolute;
  inset:0;
  z-index:-1;

  background:
  radial-gradient(circle at center,
    rgba(26,86,219,0.06),
    transparent 70%);
}

/* SECTION HEAD */

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-eyebrow{
  display:inline-block;

  color:var(--blue);

  font-size:13px;
  font-weight:800;

  letter-spacing:1px;
  text-transform:uppercase;

  margin-bottom:14px;
}

.section-head h2{
  font-family:'DM Serif Display',serif;

  font-size:clamp(36px,5vw,54px);
  line-height:1.1;

  letter-spacing:-1px;

  margin-bottom:18px;
}

.section-head h2 em{
  color:var(--blue);
  font-style:italic;
}

.section-head p{
  max-width:650px;
  margin:auto;

  color:var(--slate);

  font-size:17px;
  line-height:1.7;
}

/* STATS GRID */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.stat-card{
  position:relative;

  background:rgba(255,255,255,0.96);

  border:1px solid rgba(3,17,43,0.08);
  border-radius:28px;

  padding:42px 24px;

  text-align:center;

  box-shadow:0 10px 40px rgba(3,17,43,0.06);

  transition:.35s;
}

.stat-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 60px rgba(3,17,43,0.12);
}

.stat-icon{
  width:74px;
  height:74px;

  margin:0 auto 24px;

  border-radius:22px;

  background:rgba(26,86,219,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--blue);

  font-size:28px;
}

.stat-card h3{
  font-family:'DM Serif Display',serif;

  font-size:52px;
  line-height:1;

  color:var(--navy);

  margin-bottom:10px;
}

.stat-card p{
  color:var(--slate);
  font-size:15px;
}

.stat-plus,
.stat-extra,
.stat-percent{
  position:absolute;

  top:102px;
  right:58px;

  font-size:22px;
  font-weight:700;

  color:var(--blue);
}

/* ─────────────────────────────────
   GUARANTEE
───────────────────────────────── */

.guarantee{
  position:relative;
  z-index:1;

  max-width:950px;
  margin:0 auto 100px;

  padding:0 28px;
}

.guarantee-inner{
  background:#fff;

  border:1px solid var(--border);
  border-radius:24px;

  padding:26px 36px;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:20px 36px;

  box-shadow:var(--shadow-sm);
}

.guarantee-item{
  display:flex;
  align-items:center;
  gap:10px;

  color:var(--slate-dark);

  font-size:14px;
  font-weight:600;
}

.gi-icon{
  font-size:20px;
}

/* ─────────────────────────────────
   MARKET SECTION
───────────────────────────────── */

.market-section{
  position:relative;
  z-index:1;

  padding:0 28px 100px;
}

.widget-shell{
  max-width:1200px;
  margin:auto;

  background:#fff;

  border:1px solid var(--border);
  border-radius:30px;

  overflow:hidden;

  box-shadow:var(--shadow-md);
}

.widget-header{
  padding:22px 28px;

  border-bottom:1px solid var(--border);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.widget-header-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.live-dot{
  width:10px;
  height:10px;

  border-radius:50%;
  background:#ef4444;

  animation:pulse 1.5s infinite;
}

.live-label{
  color:#ef4444;

  font-size:12px;
  font-weight:800;

  letter-spacing:1px;
}

.widget-title{
  font-weight:700;
}

.widget-sub{
  color:var(--slate);
  font-size:14px;
}

/* ─────────────────────────────────
   CTA SECTION
───────────────────────────────── */

.cta-section{
  position:relative;
  z-index:1;

  max-width:1200px;
  margin:auto;

  padding:0 28px 100px;
}

.cta-inner{
  position:relative;
  overflow:hidden;

  background:linear-gradient(
    135deg,
    var(--navy),
    var(--navy-mid)
  );

  border-radius:var(--radius-xl);

  padding:72px 60px;

  text-align:center;

  box-shadow:0 24px 80px rgba(3,17,43,0.22);
}

.cta-inner::before{
  content:'';

  position:absolute;

  width:500px;
  height:500px;

  top:-180px;
  right:-120px;

  border-radius:50%;

  background:
  radial-gradient(circle,
    rgba(26,86,219,0.25),
    transparent 70%);
}

.cta-inner::after{
  content:'';

  position:absolute;

  width:300px;
  height:300px;

  bottom:-100px;
  left:-80px;

  border-radius:50%;

  background:
  radial-gradient(circle,
    rgba(245,166,35,0.14),
    transparent 70%);
}

.cta-eyebrow{
  position:relative;

  color:var(--gold);

  font-size:12px;
  font-weight:800;

  letter-spacing:1.4px;
  text-transform:uppercase;

  margin-bottom:16px;
}

.cta-inner h2{
  position:relative;

  font-family:'DM Serif Display',serif;

  color:#fff;

  font-size:clamp(34px,5vw,54px);
  line-height:1.1;

  margin-bottom:20px;
}

.cta-inner p{
  position:relative;

  max-width:620px;
  margin:0 auto 40px;

  color:rgba(255,255,255,0.72);

  font-size:17px;
  line-height:1.8;
}

.cta-btns{
  position:relative;

  display:flex;
  justify-content:center;
  flex-wrap:wrap;

  gap:14px;
}

.btn-white,
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  padding:15px 30px;

  border-radius:16px;

  font-size:15px;
  font-weight:700;

  transition:.3s;
}

.btn-white{
  background:#fff;
  color:var(--navy);
}

.btn-ghost{
  background:rgba(255,255,255,0.08);
  color:#fff;

  border:1px solid rgba(255,255,255,0.14);
}

.btn-white:hover,
.btn-ghost:hover{
  transform:translateY(-3px);
}

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */

footer{
  position:relative;
  z-index:1;

  background:#fff;

  border-top:1px solid var(--border);

  padding:72px 28px 32px;
}

.footer-grid{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;

  gap:48px;
}

.footer-brand p{
  max-width:300px;

  margin:16px 0 24px;

  color:var(--slate);

  font-size:14.5px;
  line-height:1.8;
}

/* SOCIAL */

.footer-social{
  display:flex;
  gap:10px;
}

.social-btn{
  width:40px;
  height:40px;

  border-radius:12px;

  background:var(--off);

  border:1px solid var(--border);

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  color:var(--slate);

  transition:.25s;
}

.social-btn:hover{
  background:var(--blue);
  color:#fff;

  transform:translateY(-3px);
}

/* COLUMNS */

.footer-col h4{
  margin-bottom:18px;

  font-size:12px;
  font-weight:800;

  letter-spacing:1px;
  text-transform:uppercase;
}

.footer-col a{
  display:block;

  margin-bottom:12px;

  text-decoration:none;

  color:var(--slate);

  font-size:14.5px;

  transition:.25s;
}

.footer-col a:hover{
  color:var(--blue);
  transform:translateX(3px);
}

/* BOTTOM */

.footer-bottom{
  max-width:1200px;
  margin:44px auto 0;

  padding-top:22px;

  border-top:1px solid var(--border);

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  gap:12px;
}

.footer-bottom p,
.footer-bottom-links a{
  color:var(--slate);
  font-size:13.5px;
}

.footer-bottom-links{
  display:flex;
  gap:20px;
}

.footer-bottom-links a{
  text-decoration:none;
}

.footer-bottom-links a:hover{
  color:var(--blue);
}

/* ─────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────── */

.reveal{
  opacity:0;
  transform:translateY(30px);

  transition:
  opacity .7s ease,
  transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

.reveal-delay-1{
  transition-delay:.1s;
}

.reveal-delay-2{
  transition-delay:.2s;
}

.reveal-delay-3{
  transition-delay:.3s;
}

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */

@media(max-width:1000px){

  .plans-grid{
    grid-template-columns:1fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .plan-card.featured{
    transform:none;
  }
}

@media(max-width:900px){

  .nav-menu{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .cta-inner{
    padding:56px 28px;
  }

  .widget-header{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:600px){

  .hero{
    padding:140px 20px 60px;
  }

  .hero h1{
    letter-spacing:-1px;
  }

  .hero-meta{
    flex-direction:column;
    gap:12px;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .cta-btns,
  .hero-cta{
    flex-direction:column;
    align-items:center;
  }

  .plan-card{
    padding:34px 26px;
  }

  .stat-plus,
  .stat-extra,
  .stat-percent{
    right:80px;
  }
}

/* =========================================================
   PROFESSIONAL ENHANCEMENT PATCH
   Adds stronger consistency, accessibility, mobile polish,
   and smoother premium interactions without breaking HTML.
========================================================= */

:root{
  --container:1220px;
  --focus:0 0 0 4px rgba(26,86,219,.16);
}

.site-header{
  position:relative;
  z-index:1000;
}

body{
  text-rendering:optimizeLegibility;
}

a,button{
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible,
button:focus-visible,
.toggle-btn:focus-visible{
  outline:none;
  box-shadow:var(--focus);
}

img,svg{
  display:block;
  max-width:100%;
}

/* Cleaner page depth */
.navbar{
  background:rgba(255,255,255,.98);
  border-bottom:1px solid rgba(16,24,40,.08);
  box-shadow:0 1px 0 rgba(16,24,40,.04);
}

.nav-container,
.plans-section,
.stats-container,
.widget-shell,
.cta-section,
.footer-grid,
.footer-bottom{
  max-width:var(--container);
}

.nav-menu a{
  position:relative;
  isolation:isolate;
}

/* Hero refinement */
.hero{
  padding-top:152px;
}

.hero h1{
  text-wrap:balance;
}

.hero p,
.section-head p,
.cta-inner p{
  text-wrap:pretty;
}

.hero-badge,
.hero-eyebrow,
.toggle-inner,
.guarantee-inner,
.widget-shell,
.plan-card,
.stat-card{
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.hero-cta a,
.cta-btns a,
.plan-btn{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.btn-primary::after,
.btn-white::after,
.plan-btn-primary::after,
.plan-btn-gold::after,
.nav-cta::before{
  content:"";
  position:absolute;
  inset:0 auto 0 -75%;
  width:45%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.36),transparent);
  transform:skewX(-18deg);
  transition:left .65s ease;
  z-index:-1;
}

.btn-primary:hover::after,
.btn-white:hover::after,
.plan-btn-primary:hover::after,
.plan-btn-gold:hover::after,
.nav-cta:hover::before{
  left:125%;
}

/* Toggle improvements */
.toggle-wrap{
  padding:0 20px;
  text-align:center;
}

.toggle-inner{
  margin:0 auto;
}

.toggle-btn{
  min-width:110px;
}

/* Pricing cards */
.plan-card{
  isolation:isolate;
}

.plan-card > *{
  position:relative;
  z-index:2;
}

.plan-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--blue),var(--green));
  transform:scaleX(.28);
  transform-origin:left;
  transition:transform .3s ease;
  z-index:2;
}

.plan-card:hover::before{
  transform:scaleX(1);
}

.plan-card.featured::before{
  display:none;
}

.plan-icon-wrap{
  box-shadow:0 8px 18px rgba(3,17,43,.05);
}

.plan-card.featured .plan-icon-wrap{
  box-shadow:none;
}

.features li{
  align-items:flex-start;
}

.plan-btn{
  box-shadow:0 10px 24px rgba(3,17,43,.08);
}

.plan-btn-outline:hover{
  background:rgba(26,86,219,.045);
}

/* Stats */
.stat-card{
  overflow:hidden;
}

.stat-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0%,rgba(26,86,219,.08),transparent 45%);
  opacity:0;
  transition:opacity .3s ease;
}

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

.stat-card > *{
  position:relative;
  z-index:1;
}

.stat-icon{
  transition:transform .3s ease, background .3s ease;
}

.stat-card:hover .stat-icon{
  transform:translateY(-4px) rotate(-4deg) scale(1.04);
  background:rgba(22,163,74,.10);
}

/* Market widget placeholder/content safety */
.widget-shell iframe,
.widget-shell .tradingview-widget-container{
  width:100%;
  min-height:430px;
}

.widget-header{
  background:linear-gradient(180deg,#fff,#f8fbff);
}

/* CTA */
.cta-inner{
  isolation:isolate;
}

.cta-inner > *{
  position:relative;
  z-index:2;
}

.btn-ghost:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.28);
}

/* Footer polish */
footer{
  background:
    radial-gradient(circle at 10% 0%,rgba(26,86,219,.06),transparent 28%),
    radial-gradient(circle at 88% 0%,rgba(22,163,74,.06),transparent 24%),
    #fff;
}

.footer-grid{
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px;
  box-shadow:0 18px 54px rgba(3,17,43,.06);
}

.footer-col h4{
  color:var(--navy);
}

.footer-col a,
.footer-bottom-links a{
  width:max-content;
}

.footer-bottom{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 20px;
  box-shadow:var(--shadow-sm);
}

/* Better mobile menu animation */
.mobile-menu{
  opacity:0;
  visibility:hidden;
  display:flex;
  transform:translateY(-10px);
  transition:opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.mobile-menu.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mobile-close{
  color:var(--navy);
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
}

/* Responsive refinements */
@media(max-width:1000px){
  .plans-grid{
    max-width:680px;
    margin:0 auto;
  }

  .plan-card.featured:hover,
  .plan-card.featured{
    transform:none;
  }
}

@media(max-width:760px){
  .nav-container{
    padding:12px 16px;
  }

  .hero{
    padding:126px 20px 52px;
  }

  .hero h1{
    font-size:clamp(40px,13vw,58px);
    letter-spacing:-1.2px;
  }

  .hero p{
    font-size:16px;
  }

  .toggle-inner{
    width:100%;
    max-width:420px;
  }

  .toggle-btn{
    flex:1;
    min-width:0;
    padding:10px 14px;
  }

  .plans-section,
  .stats-section,
  .market-section,
  .cta-section{
    padding-left:20px;
    padding-right:20px;
  }

  .plans-section{
    padding-bottom:72px;
  }

  .stats-section{
    padding-top:72px;
    padding-bottom:72px;
  }

  .market-section,
  .cta-section{
    padding-bottom:72px;
  }

  .plan-card{
    border-radius:26px;
  }

  .price{
    font-size:52px;
  }

  .guarantee{
    margin-bottom:72px;
  }

  .guarantee-inner{
    align-items:flex-start;
    justify-content:flex-start;
  }

  .widget-shell{
    border-radius:24px;
  }

  .cta-inner{
    border-radius:26px;
  }

  .footer-grid{
    padding:26px 20px;
  }

  .footer-col a,
  .footer-bottom-links a{
    width:auto;
  }
}

@media(max-width:520px){
  .hero-cta a,
  .cta-btns a{
    width:100%;
  }

  .hero-badge,
  .hero-eyebrow{
    max-width:100%;
  }

  .plan-card{
    padding:32px 22px;
  }

  .plan-top{
    align-items:center;
    gap:12px;
  }

  .popular-badge{
    top:-12px;
    font-size:11px;
    padding:8px 16px;
  }

  .plan-card.featured{
    padding-top:48px;
  }

  .stats-grid{
    gap:18px;
  }

  .stat-card{
    padding:34px 22px;
  }

  .stat-card h3{
    font-size:46px;
  }

  .stat-plus,
  .stat-extra,
  .stat-percent{
    position:static;
    display:inline-block;
    margin-left:4px;
    vertical-align:top;
  }

  .footer-bottom-links{
    flex-wrap:wrap;
    justify-content:center;
  }
}
/* FINAL FIX: MAKE MAIN CONTENT VISIBLE */

main,
.hero,
.plans-section,
.guarantee,
.stats-section,
.cta-section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.toggle-wrap{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  width:100%;
  opacity:1 !important;
  visibility:visible !important;
}

.reveal,
.reveal.active,
.reveal.visible,
.reveal.show,
.reveal.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.page-loader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
