html{
scroll-behavior:smooth;
}

*{
transition: all .25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
}
body::before{
content:"";
position:fixed;
top:-200px;
left:50%;
transform:translateX(-50%);
width:900px;
height:900px;
background:radial-gradient(circle,#a855f733,transparent 70%);
filter:blur(120px);
z-index:-1;
}
.nav-links a i {
    margin-right: 8px;
}

/* Animated Gradient Background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 30%, #a855f720, transparent 40%),
        radial-gradient(circle at 80% 70%, #6366f120, transparent 50%);
    z-index: -1;
}

@keyframes moveBg {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom:1px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.logo-circle {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #9d00ff, #4a00ff);
    border-radius: 50%;
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #7c3aed;
}

.nav-icons i {
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #ffffff;
    padding-top: 80px;
    transition: 0.4s;
    border-left:1px solid #e5e7eb;
}

.sidebar a {
    display: block;
    padding: 15px 30px;
    color: #374151;
    text-decoration: none;
}

.sidebar a:hover {
    background: #f3f4f6;
    color: #7c3aed;
}

.sidebar.active {
    right: 0;
}

/* HERO */
.hero {
    padding: 140px 8% 60px;
    max-width: 600px;
}
/* General grid hover effect */
.store-grid div {
  position: relative;
  overflow: hidden;
}

.store-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.store-grid div:hover::before {
  opacity: 1;
}

/* Step cards hover glow */
.step {
  transition: 0.3s;
  border: 1px solid #e5e7eb; /* Light border for white theme */
  background-color: #ffffff; /* White background */
}

.step:hover {
  transform: translateY(-6px);
  border-color: #a855f7;
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.25);
}

/* Featured release card upgrade */
.release-card {
  transition: 0.35s;
  position: relative;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  border-radius: 8px;
}

.release-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.25);
}

/* Image shine animation */
.release-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
}

.release-card:hover::after {
  animation: shine 1.2s;
}

@keyframes shine {
  100% {
    left: 160%;
  }
}

/* CTA section glow boost */
.cta {
  background-color: #f9f9f9; /* Light background */
  box-shadow:
    0 0 80px rgba(168, 85, 247, 0.15),
    inset 0 0 40px rgba(168, 85, 247, 0.08);
  border-radius: 12px;
  padding: 2rem;
}

/* Navbar professional blur */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(to right, #ffffff, #f3f4f6);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Optional: link colors for navbar in white theme */
.nav a {
  color: #111827;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #a855f7;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* BUTTONS */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary {
    background: linear-gradient(135deg, #6e00ff, #a000ff);
    color: white;
}

.primary span {
    background: #ffffff;
    color: black;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.primary:hover {
    box-shadow: 0 0 30px #a855f755;
    transform: translateY(-2px);
}

/* SECONDARY */
.secondary {
    border: 1px solid #e5e7eb;
    color: #111827;
    background: transparent;
}

.secondary span {
    background: linear-gradient(135deg, #6e00ff, #a000ff);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
}

.secondary:hover {
    border-color: #7c3aed;
    box-shadow: 0 0 20px #a855f733;
}

/* FEATURES */
.features p {
    color: #6b7280;
    margin-bottom: 15px;
}

.features i {
    color: #8a00ff;
    margin-right: 10px;
}

/* stats */
.stats{
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
margin-top:30px;
}

.stat{
background:#ffffff;
padding:30px;
border-radius:18px;
border:1px solid #e5e7eb;
}

.stat h2{
font-size:36px;
color:#a855f7;
}

/* tools */
.tools-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
margin-top:40px;
}

.tool{
padding:30px;
border-radius:20px;
background:#ffffff;
border:1px solid #e5e7eb;
transition:.3s;
}

.tool:hover{
transform:translateY(-6px);
border-color:#a855f7;
}

.tool-icon{
font-size:32px;
margin-bottom:15px;
}

/* badge */
.badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:linear-gradient(90deg,#c026ff,#7c3aed);
padding:6px 16px;
border-radius:30px;
font-size:12px;
font-weight:600;
color:white;
}

/* price */
.price{
font-size:38px;
font-weight:800;
margin:18px 0;
color:#111827;
}

/* SECTION */
.pricing-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}



/* RELEASE GRID */

.featured-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

/* CARD */

.release-card{
background:#ffffff;
border-radius:18px;
overflow:hidden;
border:1px solid #e5e7eb;
transition:all .35s ease;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */

.release-card:hover{
transform:translateY(-6px);
box-shadow:0 16px 40px rgba(0,0,0,0.08);
}

/* IMAGE */

.release-card img{
width:100%;
height:190px;
object-fit:cover;
transition:transform .5s ease;
}

/* IMAGE ZOOM */

.release-card:hover img{
transform:scale(1.08);
}

/* TEXT */

.release-card h4{
padding:14px 16px 6px;
font-size:16px;
color:#111827;
font-weight:600;
}

.release-card p{
padding:0 16px 16px;
font-size:14px;
color:#6b7280;
}




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

.faq-hero{
    text-align:center;
    padding:80px 20px 40px;
    background:#ffffff;
}

.faq-hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.faq-hero p{
    max-width:650px;
    margin:auto;
    font-size:16px;
    color:#6b7280;
    line-height:1.6;
}

.faq-hero strong{
    color:#111827;
}

/* ===== CATEGORY FILTER ===== */

.faq-categories{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.faq-categories button{
    padding:10px 18px;
    border-radius:999px;
    border:1px solid #e5e7eb;
    background:#f9fafb;
    font-size:14px;
    cursor:pointer;
    transition:all .2s ease;
}

.faq-categories button:hover{
    background:#ffffff;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.faq-categories button.active{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
    color:white;
    border:none;
    box-shadow:0 6px 18px rgba(124,58,237,0.3);
}

/* ===== FAQ LIST ===== */

.faq-container{
    max-width:850px;
    margin:auto;
    padding:40px 20px 80px;
}

/* ===== FAQ ITEM ===== */

.faq-item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
    transition:all .2s ease;
}

.faq-item:hover{
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

/* ===== QUESTION ===== */

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 24px;
    cursor:pointer;
    font-weight:600;
    font-size:16px;
}

.faq-question span{
    max-width:90%;
}

.faq-question .icon{
    font-size:20px;
    color:#7c3aed;
}

/* ===== ANSWER ===== */

.faq-answer{
    padding:0 24px 20px;
    font-size:15px;
    color:#6b7280;
    display:none;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .icon{
    transform:rotate(45deg);
}



section{
    padding:70px 20px;
}

h2{
    text-align:center;
    font-size:34px;
    margin-bottom:50px;
    font-weight:700;
}

h3{
    margin:8px 0;
    font-size:20px;
}

p{
    color:#6b7280;
    font-size:15px;
    margin:0;
}

/* ===== STORES ===== */

.stores{
    background:#ffffff;
}

.store-grid{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:18px;
}

.store-grid div{
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:14px;
    text-align:center;
    font-weight:500;
    transition:all .2s ease;
}

.store-grid div:hover{
    background:#ffffff;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* ===== HOW IT WORKS ===== */

.how{
    background:#f8fafc;
}

.steps{
    max-width:850px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.step{
    background:#ffffff;
    border-radius:18px;
    padding:28px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.step span{
    font-size:28px;
    font-weight:700;
    color:#22c55e;
    display:block;
    margin-bottom:8px;
}

/* ===== TOOLS ===== */

.tools{
    background:#ffffff;
}

.tools-grid{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:26px;
}

.tool{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:32px;
    text-align:center;
    transition:all .25s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.tool:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgba(0,0,0,0.08);
}

.tool-icon{
    font-size:36px;
    margin-bottom:14px;
}




/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.pricing-header p {
  color: #6b7280;
  margin-top: 10px;
  font-size: 18px;
}

/* GRID */
.pricing-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}

/* GLASS CARD */
.price-card {
  position: relative;
  padding: 45px 30px;
  border-radius: 28px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  transition:0.35s ease;
}

.price-card:hover,
.tool:hover,
.stat:hover{
  transform: translateY(-8px);
  box-shadow:
  0 10px 30px rgba(0,0,0,0.08),
  0 0 0 1px rgba(168,85,247,.25);
}
/* BADGE */
.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c026ff, #7c5cff);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color:white;
}

.pricing-section::before {
content: "";
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(168,85,247,0.2), transparent);
top: -200px;
left: -200px;
filter: blur(120px);
z-index: -1;
}

/* TITLE */
.price-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

/* PRICE */
.price {
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  margin: 20px 0;
}

.price span {
  font-size: 18px;
  opacity: 0.7;
  margin-left: 6px;
}

/* FEATURES */
.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 16px;
}

/* BUTTON */
.price-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #c026ff, #7c5cff);
}

/* CTA */
.cta{
text-align:center;
background:linear-gradient(120deg,#faf5ff,#ffffff);
border-radius:24px;
}

/* FOOTER */
.footer {
background:#f9fafb;
padding: 80px 20px 30px;
color: #374151;
}

.footer-grid {
max-width: 1200px;
margin: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 50px;
}

.footer-brand h3 {
font-size: 24px;
font-weight: 800;
background: linear-gradient(90deg, #a855f7, #6366f1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 15px;
}

.footer-brand p {
color: #6b7280;
}

.footer h4 {
color: #111827;
font-size: 16px;
margin-bottom: 15px;
font-weight: 600;
}

.footer a {
display: block;
text-decoration: none;
color: #6b7280;
margin-bottom: 10px;
transition: all 0.3s ease;
font-size: 14px;
}

.footer a:hover {
color: #a855f7;
transform: translateX(4px);
}

.footer-bottom {
margin-top: 60px;
padding-top: 25px;
border-top: 1px solid #e5e7eb;
text-align: center;
font-size: 14px;
color: #6b7280;
}
