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

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background: radial-gradient(circle at 20% 30%, #1a1a2e, transparent 40%),
                radial-gradient(circle at 80% 70%, #2a0a5e, transparent 40%),
                #0a0a0f;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 22px;
}

nav a {
    margin-left: 25px;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

.cta-nav {
    background: linear-gradient(90deg, #7b2cff, #a855f7);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
}

.cta-nav:hover {
    transform: scale(1.05);
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    z-index: -1;
}

.badge {
    background: rgba(30,30,50,0.6);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.hero span {
    color: #8b5cf6;
}

.hero p {
    color: #aaa;
    margin-top: 20px;
}

.buttons {
    margin-top: 30px;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(90deg, #7b2cff, #a855f7);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 20px rgba(139,92,246,0.4);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139,92,246,0.6);
}

.btn-secondary {
    border: 1px solid #444;
    padding: 15px 30px;
    margin-left: 10px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #8b5cf6;
}

/* SECTIONS */
section {
    padding: 80px 40px;
    text-align: center;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 40px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARDS INSANE */
.card {
    position: relative;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    overflow: hidden;
    transition: all 0.4s ease;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

/* animation delay */
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

/* ICON */
.card .icon {
    font-size: 26px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 12px;
    border-radius: 12px;
    background: rgba(139,92,246,0.1);
}

/* TEXT */
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* BORDER GLOW */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #8b5cf6, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* LIGHT EFFECT */
.card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139,92,246,0.25), transparent 70%);
    top: -50%;
    left: -50%;
    transition: 0.6s;
}

/* HOVER */
.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(139,92,246,0.25);
    border-color: rgba(139,92,246,0.3);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    top: 0;
    left: 0;
}

/* PROCESS */
.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.steps div {
    background: #111;
    padding: 15px 20px;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #0f0f1a;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact {
    padding: 100px 20px;
    text-align: center;
}

.form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input,
.form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #222;
    background: #111;
    color: white;
    font-family: 'Inter', sans-serif;
}

.form textarea {
    min-height: 120px;
    resize: none;
}

.form button {
    background: linear-gradient(90deg, #7b2cff, #a855f7);
    border: none;
    padding: 15px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.form button:hover {
    transform: scale(1.05);
}

html {
    scroll-behavior: smooth;
}

/* PRICING */
.pricing {
    padding: 100px 20px;
    text-align: center;
}

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

.pricing-card {
    background: rgba(15,15,25,0.6);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.2);
}

.price {
    font-size: 40px;
    margin: 20px 0;
    color: #8b5cf6;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.pricing-card li {
    margin-bottom: 10px;
    color: #aaa;
}

/* FEATURED */
.featured {
    border: 1px solid #8b5cf6;
    transform: scale(1.05);
}

.tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #8b5cf6;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}