:root {
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --bg-main: #f0f2f5;
    --bg-card: #ffffff;
    --text-dark: #262626;
    --text-muted: #8e8e8e;
    --btn-blue: #0095f6;
    --btn-blue-hover: #1877f2;
    --border-color: #dbdbdb;
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.05);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-main); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Clean Nav */
.nav { background: var(--bg-card); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; height: 60px; }
.nav-brand { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-dark); transition: 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--btn-blue); }
.nav-btn { background: var(--btn-blue); color: white !important; padding: 6px 16px; border-radius: 4px; font-weight: 600; }
.nav-btn:hover { background: var(--btn-blue-hover); }

/* Form Style Hero */
.hero { display: flex; justify-content: center; align-items: center; padding: 80px 20px; background: var(--bg-main); min-height: 70vh; }
.hero-content { display: flex; flex-wrap: wrap; gap: 40px; max-width: 900px; width: 100%; align-items: center; }
.hero-text { flex: 1; min-width: 300px; }
.hero-text h1 { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 15px; }
.hero-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; }

.login-form-box { flex: 1; min-width: 300px; background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px 30px; border-radius: 12px; box-shadow: var(--shadow-soft); text-align: center; }
.login-logo { font-size: 32px; font-weight: 700; font-family: 'Comic Sans MS', cursive, sans-serif; margin-bottom: 25px; }
.input-group { margin-bottom: 15px; }
.input-group input { width: 100%; background: #fafafa; border: 1px solid var(--border-color); padding: 12px 15px; border-radius: 4px; font-size: 14px; outline: none; }
.input-group input:focus { border-color: var(--text-muted); }
.btn-login { width: 100%; background: var(--btn-blue); color: white; border: none; padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.2s; margin-bottom: 20px; }
.btn-login:hover { background: var(--btn-blue-hover); }
.divider { display: flex; align-items: center; text-align: center; color: var(--text-muted); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border-color); }
.divider:not(:empty)::before { margin-right: .25em; }
.divider:not(:empty)::after { margin-left: .25em; }
.download-app { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.download-app a { background: #333; color: white; padding: 8px 15px; border-radius: 6px; font-size: 13px; font-weight: 600; }

/* Stats Minimal */
.stats { display: flex; justify-content: center; gap: 50px; padding: 30px 20px; flex-wrap: wrap; background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.stat-box { text-align: center; }
.stat-box h3 { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.stat-box p { font-size: 13px; color: var(--text-muted); }

/* Main Container */
.container { max-width: 900px; margin: 0 auto; padding: 60px 20px; }
.section-title { font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 40px; color: var(--text-dark); }

/* SEO About Text */
.about-section { text-align: center; margin-bottom: 60px; }
.about-section p { font-size: 15px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }

/* Feature Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; }
.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 25px; transition: 0.2s; }
.card:hover { box-shadow: var(--shadow-soft); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.card h3::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ig-gradient); }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Image Display */
.img-wrap { width: 100%; border-radius: 12px; border: 1px solid var(--border-color); margin-bottom: 60px; display: block; box-shadow: var(--shadow-soft); }

/* Steps / FAQ List */
.list-wrapper { max-width: 700px; margin: 0 auto 60px; }
.list-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; margin-bottom: 15px; }
.list-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.list-item p { font-size: 14px; color: var(--text-muted); }

/* Footer */
.footer { padding: 40px 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 13px; font-weight: 600; }
.footer-links a:hover { color: var(--text-dark); }
.footer p { color: #A8A8A8; font-size: 12px; }