:root{
 --violet:#2a1857;
 --blue:#0d2a5a;
 --accent:#80bfff;
 --light:#e8e8ff;
 --bg:#0e0b1a;
}
*{box-sizing:border-box}
body{margin:0;font-family:'Inter',sans-serif;background:var(--bg);color:#fff;scroll-behavior:smooth}
h1,h2,h3,h4{font-family:'Lora',serif;margin:0}
.wrap{max-width:1100px;margin:auto;padding:0 20px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  width:100%;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid #ddd;
}
.header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
}
.logo{height:60px}
.brand{display:flex;align-items:center;gap:10px}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__name{font-family:'Lora',serif;font-size:1.4rem;font-weight:700;color:#2a1857}
.brand__sub{font-size:0.9rem;font-weight:500;color:#555}
.hamburger{display:flex;flex-direction:column;gap:5px;border:0;background:none;cursor:pointer;width:32px;height:24px}
.hamburger span{height:3px;background:#2a1857;border-radius:3px;transition:.3s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translateY(7px)}
.hamburger.open span:nth-child(2){transform:rotate(-45deg) translateY(-7px)}

/* SIDENAV */
.sideNav{
  position:fixed;
  top:0;right:-220px;
  width:220px;height:100%;
  background:linear-gradient(180deg,var(--violet),var(--blue));
  display:flex;flex-direction:column;
  align-items:flex-start;
  padding:100px 25px;
  gap:16px;
  transition:.3s;
  z-index:999;
}
.sideNav a{text-decoration:none;color:#fff;font-weight:700}
.sideNav.show{right:0}

/* HERO */
.hero{position:relative;text-align:center;padding:100px 20px}
.hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.hero__shade{position:absolute;inset:0;background:rgba(10,10,30,.65);z-index:1}
.hero__content{position:relative;z-index:2;max-width:650px;margin:auto}
.hero h1{font-size:2.3rem;margin:15px 0}
.hero p{color:var(--light);margin-bottom:25px}
.btn{display:inline-block;padding:10px 22px;border-radius:999px;text-decoration:none;font-weight:700}
.btn--grad{background:linear-gradient(90deg,#5b3ebf,var(--accent));color:#fff}

/* SECTIONS */
.section{padding:80px 20px;text-align:center}
.section--dark{background:linear-gradient(180deg,var(--violet),var(--blue))}
.section--light{background:#f8f8ff;color:#0e0b1a}
.section--gradient{background:linear-gradient(180deg,#bfa6ff,#f2f2ff);color:#0e0b1a}
.section__title{font-size:1.9rem;margin-bottom:10px}
.subtitle{opacity:.5;margin-bottom:20px}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.card{padding:20px;border-radius:15px}
.glass{background:rgba(255,255,255,.08);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15)}

/* STEPS */
.steps{display:grid;gap:20px;max-width:900px;margin:auto}
.step{background:#fff;color:#0e0b1a;padding:20px;border-radius:12px;text-align:left}
.pin{display:inline-block;background:linear-gradient(90deg,#5b3ebf,var(--accent));color:#fff;width:30px;height:30px;border-radius:8px;text-align:center;line-height:30px;font-weight:800;margin-bottom:8px}

/* WHY US */
.why__box{background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border-radius:15px;padding:25px;max-width:750px;margin:20px auto;color:#0e0b1a}

/* FAQ */
.faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:25px;margin-top:30px}
.faq-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:16px;text-align:left}
.faq-card h4{margin-bottom:8px;color:#fff}
.faq-card p{color:#ddd}

/* CTA */
.final-cta{text-align:center;background:linear-gradient(180deg,#4a2dbf,#2a1857);padding:90px 10px}
.final-cta p{color:#ddd;margin:20px auto 25px;max-width:600px}

/* FOOTER */
.footer {
  position: relative;
  color: #fff;
  text-align: left;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.footer__shade {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.75);
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* align everything left */
  justify-content: flex-start;
  padding: 40px 40px 0;      /* moves content higher and from left */
  min-height: 380px;
}

/* Title */
.footer__inner .pill {
  margin-top: 0;
  margin-bottom: 8px;
}

/* Contact info */
.footer__contact {
  margin-top: 15px;
  margin-bottom: 20px;
}
.footer__contact p {
  margin: 6px 0;
}
.footer__contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Social icons row */
.socials {
  display: flex;
  justify-content: flex-start; /* left align */
  gap: 15px;
  margin-top: 15px;
}

.socials a svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover svg {
  transform: scale(1.1);
  color: #a88bff; /* your violet accent */
}

/* COPYRIGHT */
.copy {
  margin-top: auto;             /* pushes to bottom */
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: #ddd;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  text-align: left;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer__inner {
    align-items: center; /* center on mobile */
    text-align: center;
    padding: 40px 15px 0;
  }
  .socials {
    justify-content: center;
  }
  .copy {
    text-align: center;
  }
}

.card:hover .ico svg {
  transform: scale(1.1);
}


/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{font-size:1.8rem}
  .steps,.cards,.faq-grid{grid-template-columns:1fr}
  .footer__inner{text-align:center}
}
/* FAQ accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Collapsible cards */
.faq-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Question row */
.faq-card summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  padding: 16px 18px;
  position: relative;
  list-style: none;
}

/* Remove default marker */
.faq-card summary::-webkit-details-marker {
  display: none;
}

/* Custom “+” icon */
.faq-card summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  color: #B197FC;
  transition: transform 0.3s ease;
}

/* Rotate when open */
.faq-card[open] summary::after {
  transform: rotate(45deg);
}

/* Answer */
.faq-card p {
  padding: 0 18px 16px;
  margin: 0;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Open state background */
.faq-card[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.socials {
  display: flex;
  justify-content: left; /* center horizontally */
  align-items: left;
  gap: 12px; /* equal space between icons */
  margin-top: 20px;
}

.socials a {
  display: inline-flex;
  align-items: left;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.socials a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.socials a:hover svg {
  transform: scale(1.2);
  fill: #a88bff; /* light violet hover effect */
}
.team {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.member {
  text-align: center;
  max-width: 160px;
}

.member img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #a88bff;
  transition: transform 0.3s ease;
}

.member img:hover {
  transform: scale(1.05);
}

.member p {
  color: #0e0b1a;
  font-size: 0.9rem;
  line-height: 1.3;
}

.member span {
  color: #555;
  font-size: 0.8rem;
}
/* PRICING SECTION */
.pricing-cards { 
  gap: 30px; 
  justify-content: center; 
}
.pricing-card { 
  position: relative; 
  text-align: center; 
  max-width: 340px;
  padding: 32px 24px;
}
.pricing-header h3 { 
  font-size: 1.5rem; 
  margin-bottom: 10px; 
  color: #000000; 
}
.price { 
  font-size: 2.2rem; 
  font-weight: 700; 
  color: var(--accent); 
  margin: 10px 0; 
}
.price span { 
  font-size: 0.9rem; 
  color: #ccc; 
  font-weight: normal; 
}
.save { 
  background: rgba(139,98,255,0.2); 
  padding: 6px 12px; 
  border-radius: 20px; 
  font-size: 0.85rem; 
  margin-bottom: 20px; 
  display: inline-block;
}
.features { 
  text-align: left; 
  margin: 20px 0; 
  font-size: 0.95rem; 
  line-height: 1.8; 
  color: #000000;
}
.features li { 
  margin: 8px 0; 
}
.ribbon {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: #b197fc;
  color: #000;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}
.popular { 
  transform: scale(1.05); 
  border: 2px solid var(--accent); 
  box-shadow: 0 10px 30px rgba(177,151,252,0.3);
}