/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}

/* BUTTONS */
.btn {
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
    display: inline-block;
}

.btn.primary {
    background: #5A37FF;
    color: white;
}

.btn.primary:hover {
    background: #472bdd;
}

.btn.secondary {
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}

.btn.full {
    width: 100%;
    text-align: center;
}

/* HERO */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #5A37FF 0%, #7849FF 100%);
    color: white;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 44px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    height: 320px;
    min-width: 300px;
    background: url('/images/hero.jpg') center/cover;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0,0,0,0.25);
}

/* HOW IT WORKS */
.how {
    padding: 80px 10%;
    text-align: center;
    background: #F8F9FB;
}

.how h2 {
    font-size: 32px;
    font-family: "Poppins";
    margin-bottom: 40px;
}

.how-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.how-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.how-card .icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* PACKAGES */
.packages {
    padding: 80px 10%;
    text-align: center;
}

.package-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.package-card {
    width: 320px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    transition: 0.25s;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-card.highlight {
    border: 3px solid #5A37FF;
}

.package-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.package-img.basic {
    background-image: url('/images/basic-600x400.jpg');
}

.package-img.premium {
    background-image: url('/images/golden-premium.png');
}

.package-img.elite {
    background-image: url('/images/Elite-600x400.jpg');
}

.list {
    text-align: left;
    margin: 20px 0;
    padding-left: 18px;
}

.list li {
    margin: 6px 0;
}

/* SAMPLE */
.sample {
    padding: 80px 10%;
    text-align: center;
}

.sample-box img {
    width: 100%;
    max-width: 850px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 10%;
    background: #F8F9FB;
    text-align: center;
}

.test-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.test-card {
    background: white;
    padding: 25px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* FAQ */
.faq {
    padding: 80px 10%;
}

.faq-item {
    margin-bottom: 25px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #5A37FF;
    color: white;
    margin-top: 40px;
}
