/* =========================================================
   PREMIUM PRICING PAGE — FINAL CLEAN VERSION
   FILE: plans.css
========================================================= */

/* ─────────────────────────────────
   GOOGLE FONTS
───────────────────────────────── */

@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;
}

/* ─────────────────────────────────
   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;
  width:100%;

  z-index:1000;

  background:rgba(241,245,251,0.90);

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  border-bottom:1px solid var(--border);

  transition:.3s;
}

.navbar.scrolled{
  box-shadow:0 8px 32px rgba(3,17,43,0.08);
}

.nav-container{
  max-width:1240px;
  margin:auto;

  height:76px;
  padding:0 28px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */

.logo-box{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-box img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:12px;
}

.logo-text{
  font-family:'DM Serif Display',serif;
  font-size:22px;
  color:var(--navy);
}

.logo-text span{
  color:var(--blue);
}

/* MENU */

.nav-menu{
  display:flex;
  align-items:center;
  list-style:none;
  gap:4px;
}

.nav-menu a{
  text-decoration:none;

  color:var(--slate);

  font-size:14.5px;
  font-weight:600;

  padding:10px 16px;
  border-radius:12px;

  transition:.25s;
}

.nav-menu a:hover,
.nav-menu a.active{
  background:rgba(26,86,219,0.08);
  color:var(--navy);
}

/* CTA */

.nav-cta{
  background:linear-gradient(135deg,var(--blue),#1648c2)!important;
  color:#fff!important;

  border-radius:14px!important;

  box-shadow:0 6px 20px rgba(26,86,219,0.28);
}

.nav-cta:hover{
  transform:translateY(-2px);
}

/* ─────────────────────────────────
   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:1;

  display:flex;
  justify-content:center;

  margin-bottom:60px;
}

.toggle-inner{
  display:flex;
  gap:5px;

  background:#fff;

  border:1px solid var(--border);
  border-radius:999px;

  padding:5px;

  box-shadow:var(--shadow-sm);
}

.toggle-btn{
  border:none;
  background:transparent;

  padding:10px 24px;

  border-radius:999px;

  font-size:14px;
  font-weight:700;

  color:var(--slate);

  cursor:pointer;

  transition:.25s;
}

.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;
}

/* ─────────────────────────────────
   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;

  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.08);
}

/* BADGE */

.popular-badge{
  position:absolute;
  top:24px;
  right:24px;

  background:linear-gradient(135deg,var(--gold),var(--gold-dim));
  color:#fff;

  padding:7px 14px;

  border-radius:999px;

  font-size:11px;
  font-weight:800;
}

/* PLAN TOP */

.plan-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:20px;
}

.plan-icon-wrap{
  width:66px;
  height:66px;

  border-radius:20px;

  background:var(--off);
  border:1px solid var(--border);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
}

.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;
  }
}