:root {
    --primary: #635bff;
    --primary-hover: #4b44d3;
    --text-main: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --danger: #e53e3e;
    --success: #635bff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-light);
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    border: 1.5px solid var(--text-main);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.nav-btn:hover {
    background-color: var(--text-main);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text-box {
    max-width: 640px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24; /* Golden yellow */
    font-size: 16px;
}

.rating span {
    color: var(--text-main);
    margin-left: 6px;
    font-weight: 600;
    font-size: 15px;
}

.badge {
    background-color: rgba(99, 91, 255, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    margin-bottom: 36px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-main);
}

.feature-list i {
    color: var(--primary);
    font-size: 22px;
    margin-top: 2px;
}

.feature-list strong {
    font-weight: 700;
    color: #1a202c;
}

.description-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-light);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.description-box p {
    margin-bottom: 12px;
}
.description-box p:last-child {
    margin-bottom: 0;
}
.description-box strong {
    color: var(--primary);
}

.cta-wrapper {
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #7f78ff 100%);
    color: var(--white);
    text-decoration: none;
    padding: 20px 48px;
    border-radius: 40px;
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(99, 91, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(99, 91, 255, 0.35);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-light);
    margin-top: 16px;
    font-weight: 500;
}

.disclaimers {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #718096;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 62, 62, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(229, 62, 62, 0.1);
    font-weight: 500;
}

.warning-item i {
    color: var(--danger);
    font-size: 14px;
}

.strong-disclaimer {
    width: 100%;
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    font-size: 16px;
}

.avatar.bg-purple { background-color: #ebf4ff; color: var(--primary); }
.avatar.bg-dark { background-color: #2d3748; color: var(--white); }

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a202c;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #38a169;
    font-weight: 600;
    background: rgba(56, 161, 105, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
}

.cta-button.outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
    padding: 16px 40px;
}

.cta-button.outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(99, 91, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-bg::after {
        background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 60%, rgba(255,255,255,0.5) 100%);
    }

    .hero-title {
        font-size: 34px;
    }

    .nav-links {
        display: none; /* simple mobile menu hiding for now */
    }
    
    .description-box {
        padding: 20px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .reviews {
        padding: 50px 0;
    }
}
