@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand: #6366f1;
    --brand-dark: #4f46e5;
    --bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

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

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg); 
    color: var(--text-main); 
    overflow-x: hidden;
}

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

/* Navbar */
.nav-public { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--brand); text-decoration: none; }

/* Hero Section */
.hero { padding: 80px 0; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; }
.hero-content .price-tag { font-size: 2rem; color: var(--brand); font-weight: 700; margin-bottom: 30px; display: block; }
.hero-content p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 40px; }

.btn-cta { 
    background: var(--brand); 
    color: #fff; 
    padding: 18px 36px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4); }

/* Gallery */
.main-img-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); }
.main-img-wrapper img { width: 100%; display: block; }

.thumb-grid { display: flex; gap: 16px; margin-top: 20px; }
.thumb-grid img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: 0.2s; }
.thumb-grid img:hover { border-color: var(--brand); }

/* Sections */
.section-title { font-size: 2rem; font-weight: 800; margin-bottom: 40px; text-align: center; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 80px 0; }
.feature-card { background: #f8fafc; padding: 40px; border-radius: 24px; border: 1px solid #e2e8f0; }
.feature-card h3 { margin-bottom: 16px; font-weight: 700; }

/* Form Section */
.form-section { background: #0f172a; color: #fff; padding: 100px 0; border-radius: 40px; margin: 40px 20px; }
.form-wrapper { max-width: 600px; margin: 0 auto; }
.form-wrapper h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #94a3b8; }
.form-group input, .form-group textarea { 
    width: 100%; 
    padding: 16px; 
    background: #1e293b; 
    border: 1px solid #334155; 
    border-radius: 12px; 
    color: #fff; 
    font-family: inherit;
}

.social-proof-bar { background: rgba(99, 102, 241, 0.1); padding: 12px 24px; border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--brand); margin-bottom: 20px; }

@media (max-width: 968px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
}
