* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 45px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: #cbd5f5;
    text-decoration: none;
    position: relative;
}

nav a.active::after {
    content: "";
    height: 2px;
    width: 100%;
    background: #7b2ff7;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(90deg, #00c6ff, #7b2ff7);
    color: white;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 80px 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #00c6ff, #7b2ff7, #ff3cac);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    margin: 20px 0;
    line-height: 1.7;
}

.hero-image img {
    width: 280px;
}

/* BUTTON */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #00c6ff, #7b2ff7, #ff3cac);
    color: white;
    cursor: pointer;
}

/* SECTION */
.section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* FEATURES */
.features {
    display: flex;
    gap: 20px;
}

.feature {
    flex: 1;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

/* CTA */
.cta {
    text-align: center;
    padding: 80px 20px;
}

/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer a {
    display: block;
    color: #94a3b8;
    margin: 5px 0;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 32px;
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

/* subtle glow background */
.section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7b2ff7, transparent);
    top: 20%;
    left: 10%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: -1;
}

/* ABOUT SECTION TEXT */
.section p {
    max-width: 800px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #cbd5f5;
}

/* BETTER TEXT READABILITY */
.section p:not(:last-child) {
    border-left: 3px solid rgba(123, 47, 247, 0.5);
    padding-left: 15px;
}

/* ABOUT GRID (MISSION + VISION) */
.section .grid {
    margin-top: 40px;
}

/* CARD IMPROVEMENT FOR ABOUT */
.section .card {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* CARD TITLE */
.section .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

/* CARD TEXT */
.section .card p {
    font-size: 14px;
    color: #cbd5f5;
    border: none;
    padding: 0;
}

.section h2 {
    position: relative;
    padding-left: 15px;
}

.section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 25px;
    background: linear-gradient(180deg, #00c6ff, #7b2ff7);
    border-radius: 5px;
}

/* SECTION SUBTITLE */
.section-subtitle {
    max-width: 600px;
    margin-bottom: 30px;
    color: #94a3b8;
    font-size: 15px;
}

/* ICON STYLE */
.icon {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 10px;
}

/* CARD IMPROVEMENT */
.card {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #cbd5f5;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* FEATURES LAYOUT */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* FEATURE CARD */
.feature {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* ICON */
.feature-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}

/* TEXT */
.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* HOVER EFFECT */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* STEPS LAYOUT */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* STEP CARD */
.step {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* STEP NUMBER */
.step-number {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00c6ff, #7b2ff7);
    -webkit-background-clip: text;
    color: transparent;
}

/* TEXT */
.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* HOVER */
.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* CTA SECTION */
.cta {
    padding: 100px 0;
}

/* CTA BOX (MAIN PREMIUM LOOK) */
.cta-box {
    text-align: center;
    padding: 60px 30px;
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7b2ff7, transparent);
    top: -50px;
    left: -50px;
    filter: blur(100px);
    opacity: 0.5;
}

/* TEXT */
.cta-box h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-box p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 25px;
    color: #cbd5f5;
}

/* BUTTON GROUP */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid #7b2ff7;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(123, 47, 247, 0.2);
}
/* FOOTER MAIN */
.footer {
  margin-top: 80px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 60px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

/* BRAND */
.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  color: #94a3b8;
}

/* HEADINGS */
.footer h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: white;
}

/* LINKS */
.footer a {
  display: block;
  color: #94a3b8;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* SUPPORT TEXT */
.footer p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 6px;
}

/* SOCIAL ICONS */
.socials {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.socials span {
  background: rgba(255,255,255,0.08);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.socials span:hover {
  background: #7b2ff7;
}

/* EXTRA FOOTER */
.footer-extra {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
}

.footer-extra-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}
/* CONTACT LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT SIDE */
.contact-info h1 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #cbd5f5;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 20px;
  color: #7b2ff7;
}

.contact-item h4 {
  margin-bottom: 3px;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form h2 {
  margin-bottom: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

/* BUTTON */
.contact-form button {
  width: 100%;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ABOUT CONTENT */
.about-content {
  max-width: 800px;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* HERO TITLE */
h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* SUBTITLE */
.section-subtitle {
  max-width: 600px;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.legal-content ul {
  margin: 10px 0 20px 20px;
  color: #cbd5f5;
}

.legal-content li {
  margin-bottom: 6px;
}
/* TERMS BOX */
.terms-box {
  max-width: 800px;
  margin-top: 40px;
}

/* INTRO */
.intro {
  margin-bottom: 25px;
  color: #94a3b8;
}

/* BLOCK */
.term-block {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* HEADINGS */
.term-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* LIST */
.term-block ul {
  padding-left: 18px;
}

.term-block li {
  margin-bottom: 6px;
  color: #cbd5f5;
}

/* TEXT */
.term-block p {
  color: #cbd5f5;
  line-height: 1.6;
}

/* LAST UPDATED */
.last-updated {
  margin-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}
/* REFUND BOX */
.refund-box {
  max-width: 800px;
  margin-top: 40px;
}

/* INTRO */
.intro {
  margin-bottom: 25px;
  color: #94a3b8;
}

/* BLOCK */
.refund-block {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* HEADINGS */
.refund-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* LIST */
.refund-block ul {
  padding-left: 18px;
}

.refund-block li {
  margin-bottom: 6px;
  color: #cbd5f5;
}

/* TEXT */
.refund-block p {
  color: #cbd5f5;
  line-height: 1.6;
}
/* CONTENT POLICY */
.content-box {
  max-width: 800px;
  margin-top: 40px;
}

/* INTRO */
.intro {
  margin-bottom: 25px;
  color: #94a3b8;
}

/* BLOCK */
.content-block {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* HEADINGS */
.content-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* LIST */
.content-block ul {
  padding-left: 18px;
}

.content-block li {
  margin-bottom: 6px;
  color: #cbd5f5;
}

/* TEXT */
.content-block p {
  color: #cbd5f5;
  line-height: 1.6;
}