:root{

  --primary:#7c3aed;
  --secondary:#06b6d4;

  --bg:#ffffff;
  --card:#111827;

  --border:rgba(255,255,255,.08);

  --text:#0b1120;
   --muted: #111;

  --sidebar:#0f172a;

  --gradient:
    linear-gradient(
      135deg,
      var(--primary),
      var(--secondary)
    );

  --transition:.35s ease;
}

/* =========================================================
RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{

  font-family:"DM Sans",sans-serif;

  background:
    radial-gradient(
      circle at top left,
      rgba(124,58,237,.18),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(6,182,212,.15),
      transparent 30%
    ),
    var(--bg);

  color:var(--text);

  display:flex;
}

.comparison-table tbody tr{

    transition:.25s;
}

.comparison-table tbody tr:hover{

    transform:scale(1.01);

    background:#f8fafc;
}

/* =========================================================
SIDEBAR
========================================================= */

.sidebar{

  width:260px;
  min-height:100vh;

  background:rgba(15,23,42,.95);

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

  padding:30px 22px;

  position:fixed;

  left:0;
  top:0;

  backdrop-filter:blur(20px);

  z-index:1000;
}

.sidebar-brand{

  display:flex;
  align-items:center;

  gap:14px;

  margin-bottom:50px;
}

.brand-icon{

  width:52px;
  height:52px;

  border-radius:18px;

  background:var(--gradient);

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

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

  box-shadow:
    0 15px 40px rgba(124,58,237,.4);
}

.brand-text{

  font-size:28px;

  font-family:"Syne",sans-serif;

  font-weight:800;
}

.sidebar-nav ul{

  list-style:none;

  display:flex;
  flex-direction:column;

  gap:12px;
}

.sidebar-nav li a{

  display:flex;
  align-items:center;

  gap:14px;

  text-decoration:none;

  padding:15px 18px;

  border-radius:18px;

  color:var(--muted);

  transition:var(--transition);
}

.sidebar-nav li a:hover,
.sidebar-nav .active a{

  background:rgba(124,58,237,.18);

  color:white;

  transform:translateX(4px);
}


/* =========================================================
MAIN
========================================================= */

.main-home{

  margin-left:260px;

  width:calc(100% - 260px);

  padding:130px 40px 80px;
}

/* =========================================================
HERO
========================================================= */

.hero-section{

  text-align:center;

  margin-bottom:80px;
}

.hero-badge{

  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:12px 18px;

  border-radius:999px;

  background:rgba(124,58,237,.16);

  color:#c4b5fd;

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

  margin-bottom:24px;
}

.hero-section h1{

  font-size:clamp(48px,8vw,82px);

  line-height:1;

  margin-bottom:24px;

  font-family:"Syne",sans-serif;

  font-weight:800;
}

.hero-section h1 span{

  background:var(--gradient);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-section p{

  max-width:760px;

  margin:auto;

  color:var(--muted);

  line-height:1.9;

  font-size:18px;
}

.hero-buttons{

  display:flex;
  justify-content:center;

  gap:18px;

  margin-top:38px;
}

.primary-btn,
.secondary-btn{

  padding:14px 26px;

  border:none;

  border-radius:16px;

  cursor:pointer;

  font-weight:700;

  transition:var(--transition);
}

.primary-btn{

  background:var(--gradient);

  color:white;
}

.secondary-btn{

  background:rgba(255,255,255,.06);

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

  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{

  transform:translateY(-4px);
}

/* =========================================================
SECTION
========================================================= */

.component-section{

  margin-bottom:90px;
}

.section-title{

  margin-bottom:40px;
}

.section-title span{

  color:#c4b5fd;

  font-size:14px;

  text-transform:uppercase;

  letter-spacing:1px;

  font-weight:700;
}

.section-title h2{

  margin-top:10px;

  font-size:42px;

  font-family:"Syne",sans-serif;
}

/* =========================================================
PRICING GRID
========================================================= */

.pricing-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:28px;
}

.pricing-card{

  position:relative;

  background:rgba(255,255,255,.04);

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

  border-radius:28px;

  padding:34px;

  overflow:hidden;

  transition:var(--transition);

  backdrop-filter:blur(18px);
}

.pricing-card:hover{

  transform:translateY(-10px);

  border-color:rgba(124,58,237,.4);

  box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.featured-card{

  border-color:rgba(124,58,237,.5);

  transform:scale(1.03);
}

.popular-tag{

  position:absolute;

  top:18px;
  right:18px;

  padding:8px 14px;

  border-radius:999px;

  background:var(--gradient);

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

.plan-badge{

  display:inline-block;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(255,255,255,.08);

  color:#c4b5fd;

  font-size:13px;

  margin-bottom:22px;
}

.pricing-card h3{

  font-size:34px;

  margin-bottom:16px;

  font-family:"Syne",sans-serif;
}

.price{

  font-size:54px;

  font-weight:800;

  margin-bottom:28px;
}

.price span{

  font-size:16px;

  color:var(--muted);
}

.pricing-card ul{

  list-style:none;

  display:flex;
  flex-direction:column;

  gap:18px;

  margin-bottom:30px;
}

.pricing-card li{

  display:flex;
  align-items:center;

  gap:12px;

  color:#06b6d4;
}

.pricing-card li i.fa-check{
  color:#22c55e;
}

.pricing-card li i.fa-xmark{
  color:#ef4444;
}

.pricing-card button{

  width:100%;

  padding:14px;

  border:none;

  border-radius:16px;

  background:var(--gradient);

  color:white;

  font-weight:700;

  cursor:pointer;

  transition:var(--transition);
}

.pricing-card button:hover{

  transform:translateY(-3px);
}

/* =========================================================
COMPARISON TABLE
========================================================= */

.table-wrapper{

  overflow:auto;

  border-radius:24px;

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

  background:rgba(255,255,255,.04);
}

.comparison-table{

  width:100%;

  border-collapse:collapse;

  min-width:760px;
}

.comparison-table th,
.comparison-table td{

  padding:24px;

  text-align:center;

  border-bottom:1px solid rgba(255,255,255,.06);
}

.comparison-table th{

  background:rgba(255,255,255,.05);

  font-size:16px;

  color:peru;
}

.comparison-table td{

  color:purple;
}

.comparison-table tr:hover{

  background:rgba(255,255,255,.03);
}

/* =========================================================
FEATURE GRID
========================================================= */

.feature-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

  gap:28px;
  background-color:lightblue;
}

.feature-card{

  background:#d1d5db;

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

  border-radius:26px;

  padding:34px;

  transition:var(--transition);
}

.feature-card:hover{

  transform:translateY(-8px);

  border-color:rgba(6,182,212,.4);
}

.feature-icon{

  width:70px;
  height:70px;

  border-radius:22px;

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

  background:var(--gradient);

  font-size:28px;

  margin-bottom:24px;
}

.feature-card h3{

  font-size:24px;

  margin-bottom:14px;

  font-family:"Syne",sans-serif;
  
}

.feature-card p{

  

  line-height:1.8;
}

/* =========================================================
STACKED CARDS
========================================================= */

.stacked-layout{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:26px;
}

.stack-card{

  background:rgba(255,255,255,.04);

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

  border-radius:26px;

  padding:32px;

  transition:var(--transition);
}

.active-stack{

  border-color:rgba(124,58,237,.5);

  box-shadow:
    0 15px 50px rgba(124,58,237,.18);
}

.stack-card:hover{

  transform:translateY(-8px);
}

.stack-top{

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

  margin-bottom:24px;
}

.stack-top h3{

  font-size:26px;

  font-family:"Syne",sans-serif;
}

.stack-top span{

  color:#c4b5fd;

  font-weight:700;
}

.stack-card ul{

  list-style:none;

  display:flex;
  flex-direction:column;

  gap:16px;

  color:#0f172a;
}
/* =========================================================
MODERN WHITE THEME COMPARISON COMPONENTS
Creative + Premium UI
========================================================= */

:root{
  --primary:#5b5ff8;
  --secondary:#8b5cf6;
  --dark:#111827;
  --text:#4b5563;
  --border:#ececf3;
  --surface:#ffffff;
  --soft:#f8f8fc;
}

/* =========================================================
SECTION
========================================================= */

.component-section{
  padding:110px 8%;
  background:#fff;
  position:relative;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  background:#f3f4ff;
  border:1px solid #e6e8ff;
  border-radius:999px;
  color:var(--primary);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.4px;
  margin-bottom:20px;
}

.section-title h2{
  font-size:52px;
  font-weight:800;
  color:var(--dark);
  line-height:1.1;
  letter-spacing:-1px;
}

/* =========================================================
PREMIUM PRICING GRID
========================================================= */

.glass-pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(310px,1fr));
  gap:35px;
}

/* =========================================================
CARD
========================================================= */

.glass-card{
  position:relative;
  overflow:hidden;
  padding:42px;
  border-radius:34px;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,1) 0%,
    rgba(248,249,255,1) 100%
  );

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

  transition:0.45s ease;

  box-shadow:
  0 10px 30px rgba(20,20,43,0.04),
  inset 0 1px 0 rgba(255,255,255,0.9);
}

/* GLOW EFFECT */

.glass-card::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:220px;
  height:220px;
  background:radial-gradient(
    circle,
    rgba(91,95,248,0.14),
    transparent 70%
  );
}

/* HOVER */

.glass-card:hover{
  transform:translateY(-12px);
  border-color:#d9ddff;

  box-shadow:
  0 25px 60px rgba(91,95,248,0.14);
}

/* FEATURED CARD */

.featured-glass{
  background:
  linear-gradient(
    135deg,
    #5b5ff8 0%,
    #7c4dff 100%
  );

  border:none;
}

.featured-glass h3,
.featured-glass p,
.featured-glass li,
.featured-glass .glass-price,
.featured-glass .glass-price span{
  color:#fff;
}

.featured-glass .divider{
  background:rgba(255,255,255,0.14);
}

.featured-glass button{
  background:#fff !important;
  color:#5b5ff8 !important;
}

/* =========================================================
TOP BADGE
========================================================= */

.top-row{
  margin-bottom:26px;
}

.mini-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  border-radius:999px;

  background:#eef2ff;
  color:var(--primary);

  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.8px;
}

.featured-glass .mini-badge{
  background:rgba(255,255,255,0.14);
  color:#fff;
}

/* =========================================================
POPULAR TAG
========================================================= */

.popular-pill{
  position:absolute;
  top:22px;
  right:22px;

  padding:10px 16px;

  border-radius:999px;

  background:#fff;
  color:var(--primary);

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

  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* =========================================================
TEXT
========================================================= */

.glass-card h3{
  font-size:34px;
  font-weight:800;
  color:var(--dark);
  margin-top:20px;
}

.glass-price{
  margin:24px 0 18px;
  font-size:68px;
  font-weight:800;
  line-height:1;
  color:var(--dark);
  letter-spacing:-3px;
}

.glass-price span{
  font-size:18px;
  font-weight:500;
  color:#6b7280;
}

.glass-card p{
  color:var(--text);
  line-height:1.8;
  font-size:15px;
}

/* =========================================================
DIVIDER
========================================================= */

.divider{
  width:100%;
  height:1px;
  background:#ebeef5;
  margin:30px 0;
}

/* =========================================================
FEATURE LIST
========================================================= */

.glass-card ul{
  list-style:none;
}

.glass-card ul li{
  display:flex;
  align-items:center;
  gap:14px;

  margin-bottom:18px;

  color:#374151;
  font-weight:500;
}

.glass-card ul li::before{
  content:"✔";

  width:24px;
  height:24px;

  border-radius:50%;

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

  background:#eef2ff;
  color:var(--primary);

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

.featured-glass ul li::before{
  background:rgba(255,255,255,0.18);
  color:#fff;
}

/* =========================================================
BUTTON
========================================================= */

.glass-card button{
  width:100%;
  margin-top:32px;

  padding:17px;

  border:none;
  border-radius:18px;

  background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );

  color:#fff;

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

  cursor:pointer;

  transition:0.35s ease;
}

.glass-card button:hover{
  transform:scale(1.03);
}

/* =========================================================
MODERN TABLE
========================================================= */

.minimal-table-wrap{
  overflow-x:auto;
  border-radius:30px;
}

.minimal-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;

  background:#fff;

  border:1px solid #eef0f5;

  border-radius:30px;

  box-shadow:
  0 12px 35px rgba(20,20,43,0.05);
}

.minimal-table thead{
  background:
  linear-gradient(
    135deg,
    #5b5ff8,
    #8b5cf6
  );
}

.minimal-table th{
  padding:24px;
  color:#fff;
  font-size:15px;
  font-weight:700;
  text-align:left;
}

.minimal-table td{
  padding:24px;
  color:#374151;
  border-bottom:1px solid #f1f2f6;
  font-weight:500;
}

.minimal-table tbody tr{
  transition:0.3s;
}

.minimal-table tbody tr:hover{
  background:#fafaff;
}

/* =========================================================
TOGGLE PRICING
========================================================= */

.toggle-wrapper{
  padding:55px;
  border-radius:38px;

  background:
  linear-gradient(
    180deg,
    #fafaff 0%,
    #ffffff 100%
  );

  border:1px solid #eff1f6;
}

.toggle-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;

  margin-bottom:60px;

  font-weight:700;
  color:#111827;
}

.toggle-switch{
  position:relative;

  width:74px;
  height:40px;

  border-radius:999px;

  background:linear-gradient(
    135deg,
    #5b5ff8,
    #8b5cf6
  );

  box-shadow:
  0 10px 25px rgba(91,95,248,0.3);
}

.toggle-switch::before{
  content:"";

  position:absolute;
  top:5px;
  left:5px;

  width:30px;
  height:30px;

  border-radius:50%;
  background:#fff;
}

/* =========================================================
TOGGLE GRID
========================================================= */

.toggle-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.toggle-card{
  position:relative;

  padding:38px;

  border-radius:30px;

  background:#fff;

  border:1px solid #ececf4;

  transition:0.4s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);
}

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

.active-toggle{
  background:
  linear-gradient(
    135deg,
    #5b5ff8,
    #7c4dff
  );

  border:none;
}

.active-toggle h3,
.active-toggle p,
.active-toggle .toggle-price{
  color:#fff;
}

.save-badge{
  position:absolute;
  top:20px;
  right:20px;

  padding:10px 15px;

  border-radius:999px;

  background:#fff;

  color:#5b5ff8;

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

/* =========================================================
TOGGLE CONTENT
========================================================= */

.toggle-card h3{
  font-size:30px;
  font-weight:800;
  color:#111827;
}

.toggle-price{
  font-size:64px;
  font-weight:800;
  color:#111827;
  margin:24px 0 18px;
  letter-spacing:-2px;
}

.toggle-card p{
  line-height:1.8;
  color:#6b7280;
}

.toggle-card button{
  width:100%;
  margin-top:28px;

  padding:16px;

  border:none;
  border-radius:16px;

  background:#111827;
  color:#fff;

  font-weight:700;
  cursor:pointer;
}

.active-toggle button{
  background:#fff;
  color:#5b5ff8;
}

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

@media(max-width:768px){

  .section-title h2{
    font-size:38px;
  }

  .glass-card,
  .toggle-card{
    padding:32px;
  }

  .glass-price,
  .toggle-price{
    font-size:54px;
  }

  .toggle-wrapper{
    padding:35px 24px;
  }

}
/* =========================================================
CTA
========================================================= */

.cta-section{

  margin-top:80px;

  padding:70px;

  border-radius:36px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.22),
      rgba(6,182,212,.18)
    );

  border:1px solid rgba(255,255,255,.08);

  text-align:center;

  overflow:hidden;

  position:relative;
}

.cta-badge{

  display:inline-block;

  padding:10px 16px;

  border-radius:999px;

  background:rgba(255,255,255,.08);

  margin-bottom:22px;

  color:#c4b5fd;

  font-size:14px;
}

.cta-section h2{

  font-size:48px;

  max-width:760px;

  margin:auto auto 24px;

  line-height:1.2;

  font-family:"Syne",sans-serif;
}

.cta-section p{

  max-width:680px;

  margin:auto auto 30px;

  color:#d1d5db;

  line-height:1.8;
}

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

@media(max-width:1100px){

  .pricing-grid,
  .feature-grid,
  .stacked-layout{

    grid-template-columns:1fr;
  }
}

@media(max-width:900px){

  .sidebar{
    transform:translateX(-100%);
  }

  .navbar{
    left:0;
  }

  .main-home{

    margin-left:0;

    width:100%;
  }
}

@media(max-width:768px){

  .navbar{

    padding:0 20px;
  }

  .main-home{

    padding:120px 20px 60px;
  }

  .hero-buttons{

    flex-direction:column;
  }

  .search-bar{

    width:220px;
  }

  .cta-section{

    padding:50px 24px;
  }

  .cta-section h2{

    font-size:36px;
  }
}

@media(max-width:560px){

  .navbar{

    flex-direction:column;

    height:auto;

    gap:16px;

    padding:18px;
  }

  .search-bar{

    width:100%;
  }

  .hero-section h1{

    font-size:52px;
  }

  .section-title h2{

    font-size:34px;
  }
}