*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #111827; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .3s; padding: 16px 0; }
.nav.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(8px); box-shadow: 0 1px 8px rgba(0,0,0,.08); }
.nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 500; }
.nav-links a { color: #fff; transition: color .2s; }
.nav.scrolled .nav-links a { color: #374151; }
.nav-links a:hover { color: #15803d; }
.nav-links a.highlight { color: #86efac; font-weight: 700; }
.nav.scrolled .nav-links a.highlight { color: #15803d; }
.nav-cta { background: #15803d; color: #fff !important; padding: 8px 16px; border-radius: 8px; display: flex; align-items: center; gap: 6px; }
.nav-cta:hover { background: #166534 !important; }

/* HERO */
.hero { background: linear-gradient(135deg, #052e16 0%, #14532d 40%, #166534 70%, #15803d 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-blur1 { position: absolute; top: 80px; left: 80px; width: 256px; height: 256px; border-radius: 50%; background: #4ade80; opacity: .08; filter: blur(64px); }
.hero-blur2 { position: absolute; bottom: 80px; right: 80px; width: 384px; height: 384px; border-radius: 50%; background: #6ee7b7; opacity: .08; filter: blur(80px); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 860px; padding: 0 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: #86efac; margin-bottom: 32px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero h1 .green { color: #4ade80; }
.hero-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 24px; }
.hero-price .label { font-size: 1.5rem; color: #86efac; font-weight: 500; }
.hero-price .amount { font-size: clamp(4rem,10vw,6rem); font-weight: 900; color: #fff; line-height: 1; }
.hero p { font-size: 1.2rem; color: #bbf7d0; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.btn-primary { background: #22c55e; color: #fff; font-weight: 700; padding: 16px 32px; border-radius: 12px; font-size: 1.1rem; transition: all .2s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,.35); }
.btn-outline { border: 1px solid rgba(255,255,255,.35); color: #fff; font-weight: 700; padding: 16px 32px; border-radius: 12px; font-size: 1.1rem; transition: all .2s; background: transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; font-size: 14px; color: #bbf7d0; }
.hero-checks span { display: flex; align-items: center; gap: 6px; }
.bounce { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: #86efac; animation: bounce 1.5s infinite; font-size: 2rem; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: #f9fafb; }
.section-dark { background: #111827; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #111827; margin-bottom: 12px; }
.section-title p { font-size: 1.1rem; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: #9ca3af; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

/* CARD */
.card { background: #fff; border-radius: 16px; border: 1px solid #f3f4f6; padding: 24px; }
.card:hover { border-color: #bbf7d0; background: #f0fdf4; transition: all .2s; }
.card-icon { width: 40px; height: 40px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #15803d; margin-bottom: 12px; font-size: 18px; }
.card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.card p { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* PRICING */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 24px; }
.pricing-card { border-radius: 16px; padding: 32px; text-align: center; border: 2px solid #e5e7eb; background: #fff; transition: all .2s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.pricing-card.featured { background: #15803d; border-color: #15803d; color: #fff; }
.pricing-card .label { font-size: 13px; font-weight: 500; color: #6b7280; margin-bottom: 6px; }
.pricing-card.featured .label { color: #bbf7d0; }
.pricing-card .amount { font-size: 2.5rem; font-weight: 900; color: #111827; margin-bottom: 16px; }
.pricing-card.featured .amount { color: #fff; }
.pricing-card .monthly { font-size: 1.8rem; font-weight: 700; color: #15803d; }
.pricing-card .monthly span { font-size: 14px; font-weight: 400; }
.pricing-card.featured .monthly { color: #86efac; }
.pricing-note { font-size: 13px; color: #9ca3af; text-align: center; max-width: 600px; margin: 0 auto 24px; line-height: 1.6; }

/* INCLUDED */
.included-box { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07); border: 1px solid #f3f4f6; max-width: 700px; margin: 0 auto; }
.included-header { background: #15803d; padding: 24px 32px; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.included-header .title { font-size: 1.1rem; font-weight: 700; }
.included-header .sub { font-size: 13px; color: #bbf7d0; }
.included-header .price { text-align: right; }
.included-header .price .from { font-size: 12px; color: #bbf7d0; }
.included-header .price .amt { font-size: 1.8rem; font-weight: 900; }
.included-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 32px; border-top: 1px solid #f3f4f6; }
.included-row .ico { width: 40px; height: 40px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #15803d; }
.included-row .text h3 { font-weight: 700; font-size: 15px; color: #111827; margin-bottom: 2px; }
.included-row .text p { font-size: 13px; color: #6b7280; line-height: 1.6; }
.included-row .check { margin-left: auto; color: #16a34a; flex-shrink: 0; font-size: 20px; }

/* HOW IT WORKS */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.step { display: flex; gap: 24px; }
.step-num { width: 56px; height: 56px; background: #15803d; color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 900; flex-shrink: 0; }
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: #111827; }
.step p { font-size: 14px; color: #6b7280; line-height: 1.7; }
.step-note { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 16px; padding: 24px 32px; text-align: center; margin-top: 40px; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.step-note span { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #15803d; }

/* GUARANTEES */
.guarantee-card { background: #1f2937; border: 1px solid #374151; border-radius: 16px; padding: 24px; }
.guarantee-card .ico { font-size: 24px; margin-bottom: 12px; }
.guarantee-card h3 { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 8px; }
.guarantee-card p { font-size: 13px; color: #9ca3af; line-height: 1.6; }

/* TESTIMONIALS */
.tcard { background: #1f2937; border: 1px solid #374151; border-radius: 16px; padding: 24px; }
.tcard .stars { color: #fbbf24; margin-bottom: 12px; font-size: 16px; }
.tcard p { color: #d1d5db; font-style: italic; margin-bottom: 12px; line-height: 1.7; font-size: 14px; }
.tcard .author { color: #4ade80; font-weight: 600; font-size: 13px; }
.rating-header { text-align: center; margin-bottom: 40px; }
.rating-header .stars { font-size: 24px; color: #fbbf24; margin-bottom: 8px; }
.rating-header h2 { color: #fff; font-size: 1.8rem; font-weight: 800; }
.rating-header p { color: #6b7280; }

/* PARTNERS */
.partner-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 32px; }
.partner-badge { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 999px; padding: 10px 20px; font-size: 13px; font-weight: 700; color: #15803d; }
.partner-note { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 16px; padding: 20px 24px; max-width: 700px; margin: 0 auto; font-size: 14px; color: #166534; line-height: 1.7; text-align: center; }

/* FAQ */
.faq-item { border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; cursor: pointer; font-weight: 600; color: #111827; background: #fff; font-size: 15px; transition: background .2s; }
.faq-q:hover { background: #f9fafb; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; font-size: 14px; color: #6b7280; line-height: 1.7; }
.faq-a.open { max-height: 200px; padding: 0 24px 18px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 12px; }
.contact-info p { color: #6b7280; line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-detail .ico { width: 44px; height: 44px; background: #dcfce7; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #15803d; flex-shrink: 0; font-size: 18px; }
.contact-detail .lbl { font-size: 12px; color: #9ca3af; }
.contact-detail .val { font-weight: 600; color: #111827; font-size: 15px; }
.contact-form { background: #f9fafb; border-radius: 20px; padding: 32px; border: 1px solid #f3f4f6; }
.contact-form h3 { font-size: 1.2rem; font-weight: 800; color: #111827; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; transition: border .2s, box-shadow .2s; color: #111827; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; background: #15803d; color: #fff; font-weight: 700; padding: 14px; border-radius: 12px; border: none; cursor: pointer; font-size: 15px; font-family: inherit; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: #166534; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 20px; text-align: center; color: #15803d; font-weight: 600; display: none; }
.form-success.show { display: block; }

/* FOOTER */
footer { background: #052e16; padding: 40px 0 24px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #6b7280; transition: color .2s; }
.footer-links a:hover { color: #4ade80; }
.footer-copy { border-top: 1px solid #134e4a; padding-top: 20px; font-size: 12px; color: #4b5563; text-align: center; line-height: 1.7; }

/* ELIGIBILITY CHECKER */
.eligibility-section { background: #f9fafb; padding: 80px 0; }
.elig-badge { display: inline-flex; align-items: center; gap: 8px; background: #dcfce7; color: #15803d; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 999px; margin-bottom: 16px; }
#eligibility-checker { max-width: 760px; margin: 0 auto; }
.elig-card { background: #fff; border-radius: 24px; border: 1px solid #e5e7eb; box-shadow: 0 4px 20px rgba(0,0,0,.07); overflow: hidden; }
.elig-header { background: linear-gradient(135deg, #166534, #15803d); padding: 40px 32px; text-align: center; color: #fff; }
.elig-header .shield { width: 64px; height: 64px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.elig-header h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.elig-header p { color: #bbf7d0; font-size: 15px; }
.elig-body { padding: 32px; }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
@media(max-width:600px) { .criteria-grid { grid-template-columns: 1fr; } }
.criteria-list h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.criteria-list.pass h4 { color: #15803d; }
.criteria-list.fail h4 { color: #dc2626; }
.criteria-list ul { list-style: none; }
.criteria-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #374151; margin-bottom: 8px; line-height: 1.5; }
.criteria-list.pass li::before { content: "✓"; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.criteria-list.fail li::before { content: "✗"; color: #ef4444; font-weight: 700; flex-shrink: 0; }
.mcs-note { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 14px 16px; font-size: 13px; color: #1e40af; line-height: 1.6; margin-bottom: 24px; }
.btn-start { width: 100%; background: #15803d; color: #fff; font-weight: 700; padding: 18px; border-radius: 12px; border: none; cursor: pointer; font-size: 1.1rem; font-family: inherit; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-start:hover { background: #166534; box-shadow: 0 8px 20px rgba(21,128,61,.25); }
.elig-hint { font-size: 12px; color: #9ca3af; text-align: center; margin-top: 8px; }

/* QUIZ */
.progress-bar { height: 5px; background: #f3f4f6; }
.progress-fill { height: 5px; background: #16a34a; transition: width .5s ease; }
.quiz-inner { padding: 32px; }
.quiz-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.quiz-cat { background: #dcfce7; color: #15803d; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.quiz-count { font-size: 13px; color: #9ca3af; }
.quiz-q { font-size: 1.2rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.quiz-hint { background: #f9fafb; border-radius: 12px; padding: 14px 16px; font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 28px; }
.quiz-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.quiz-btn { padding: 18px; border-radius: 12px; border: 2px solid; font-size: 1.1rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.quiz-btn.yes { border-color: #bbf7d0; color: #15803d; background: #fff; }
.quiz-btn.yes:hover { background: #f0fdf4; border-color: #22c55e; }
.quiz-btn.no { border-color: #e5e7eb; color: #4b5563; background: #fff; }
.quiz-btn.no:hover { background: #fef2f2; border-color: #fca5a5; color: #dc2626; }
.quiz-back { background: none; border: none; font-size: 13px; color: #9ca3af; cursor: pointer; display: flex; align-items: center; gap: 4px; font-family: inherit; transition: color .2s; }
.quiz-back:hover { color: #4b5563; }

/* RESULTS */
.result-header { padding: 40px 32px; text-align: center; color: #fff; }
.result-header.pass { background: linear-gradient(135deg, #166534, #22c55e); }
.result-header.fail { background: linear-gradient(135deg, #92400e, #ef4444); }
.result-circle { width: 80px; height: 80px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 36px; }
.result-circle.pass { color: #16a34a; }
.result-circle.fail { color: #f97316; }
.result-body { padding: 32px; }
.capture-form input { width: 100%; padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; margin-bottom: 12px; transition: border .2s, box-shadow .2s; }
.capture-form input:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.capture-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:480px) { .capture-2col { grid-template-columns: 1fr; } }
.fail-box { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; }
.fail-box .fail-cat { font-weight: 700; font-size: 14px; color: #92400e; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.fail-box p { font-size: 13px; color: #c2410c; line-height: 1.6; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-advisor { background: #15803d; color: #fff; font-weight: 700; padding: 14px; border-radius: 12px; border: none; cursor: pointer; font-family: inherit; font-size: 14px; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.btn-advisor:hover { background: #166534; }
.btn-retry { background: #fff; color: #374151; font-weight: 700; padding: 14px; border-radius: 12px; border: 2px solid #e5e7eb; cursor: pointer; font-family: inherit; font-size: 14px; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-retry:hover { background: #f9fafb; }
.elig-footer { border-top: 1px solid #f3f4f6; padding: 16px 32px; text-align: center; }
.btn-reset { background: none; border: none; font-size: 13px; color: #9ca3af; cursor: pointer; font-family: inherit; transition: color .2s; }
.btn-reset:hover { color: #6b7280; }

/* captured success */
.captured-success { text-align: center; padding: 16px 0; }
.captured-success .circle { width: 56px; height: 56px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 24px; color: #16a34a; }
.captured-success h4 { font-size: 1.2rem; font-weight: 800; color: #111827; margin-bottom: 8px; }
.captured-success p { font-size: 14px; color: #6b7280; margin-bottom: 20px; }

/* ADMIN PANEL */
.admin-login { min-height: 100vh; background: linear-gradient(135deg,#052e16,#14532d,#15803d); display: flex; align-items: center; justify-content: center; padding: 24px; }
.admin-login-box { background: #fff; border-radius: 24px; padding: 40px; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.admin-login-box .logo { text-align: center; margin-bottom: 24px; }
.admin-login-box .logo img { height: 40px; }
.admin-login-box .lock-icon { width: 48px; height: 48px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; }
.admin-login-box h1 { text-align: center; font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: 4px; }
.admin-login-box .sub { text-align: center; font-size: 13px; color: #9ca3af; margin-bottom: 24px; }
.pw-wrap { position: relative; }
.pw-wrap input { width: 100%; padding: 12px 44px 12px 16px; border: 1px solid #e5e7eb; border-radius: 12px; font-size: 15px; font-family: inherit; transition: all .2s; }
.pw-wrap input:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.pw-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #9ca3af; font-size: 18px; }
.login-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 10px 16px; border-radius: 10px; font-size: 13px; margin-top: 10px; display: none; }
.login-error.show { display: block; }
.btn-login { width: 100%; background: #15803d; color: #fff; font-weight: 700; padding: 14px; border-radius: 12px; border: none; cursor: pointer; font-size: 16px; font-family: inherit; margin-top: 14px; transition: background .2s; }
.btn-login:hover { background: #166534; }
.back-link { text-align: center; margin-top: 20px; }
.back-link a { font-size: 13px; color: #15803d; }

/* ADMIN PANEL INTERIOR */
.admin-nav { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.admin-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.admin-badge { background: #dcfce7; color: #15803d; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 6px; margin-left: 10px; }
.admin-body { display: flex; max-width: 1100px; margin: 0 auto; padding: 32px 24px; gap: 32px; }
.admin-sidebar { width: 180px; flex-shrink: 0; }
.admin-sidebar nav { position: sticky; top: 80px; }
.sidebar-btn { display: flex; align-items: center; gap: 8px; width: 100%; padding: 10px 14px; border-radius: 10px; border: none; background: none; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; color: #6b7280; transition: all .2s; margin-bottom: 4px; }
.sidebar-btn.active { background: #15803d; color: #fff; }
.sidebar-btn:hover:not(.active) { background: #f3f4f6; }
.admin-content { flex: 1; min-width: 0; }
.admin-panel-section { display: none; }
.admin-panel-section.active { display: block; }
.admin-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.admin-label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 4px; }
.admin-input { width: 100%; padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; font-family: inherit; transition: all .2s; margin-bottom: 16px; }
.admin-input:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.btn-save { background: #15803d; color: #fff; font-weight: 700; padding: 12px 24px; border-radius: 12px; border: none; cursor: pointer; font-size: 15px; font-family: inherit; transition: background .2s; display: flex; align-items: center; gap: 8px; }
.btn-save:hover { background: #166534; }
.btn-save.saved { background: #dcfce7; color: #15803d; }
.btn-logout { background: none; border: none; padding: 8px 12px; border-radius: 8px; color: #9ca3af; cursor: pointer; font-family: inherit; font-size: 14px; transition: all .2s; }
.btn-logout:hover { background: #fef2f2; color: #ef4444; }
.btn-view { background: none; border: none; padding: 8px 14px; font-size: 13px; font-weight: 600; color: #6b7280; cursor: pointer; font-family: inherit; transition: color .2s; }
.btn-view:hover { color: #15803d; }
/* CRM */
.crm-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
@media(max-width:640px) { .crm-stats { grid-template-columns: repeat(2,1fr); } }
.stat-box { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px 16px; }
.stat-ico { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; font-size: 16px; }
.stat-ico.gray { background: #f3f4f6; color: #6b7280; }
.stat-ico.green { background: #dcfce7; color: #15803d; }
.stat-ico.blue { background: #dbeafe; color: #2563eb; }
.stat-ico.red { background: #fee2e2; color: #dc2626; }
.stat-val { font-size: 1.6rem; font-weight: 900; color: #111827; }
.stat-lbl { font-size: 12px; color: #6b7280; }
.crm-toolbar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid #f3f4f6; flex-wrap: wrap; }
.crm-search { position: relative; flex: 1; min-width: 180px; }
.crm-search input { width: 100%; padding: 8px 14px 8px 34px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 13px; font-family: inherit; }
.crm-search input:focus { outline: none; border-color: #22c55e; }
.crm-search-ico { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: #9ca3af; font-size: 14px; }
.filter-btn { padding: 6px 12px; border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .2s; color: #6b7280; }
.filter-btn.active { background: #15803d; color: #fff; border-color: #15803d; }
.btn-export { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: #f3f4f6; border: none; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; color: #374151; transition: background .2s; }
.btn-export:hover { background: #e5e7eb; }
.leads-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.leads-table th { padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #9ca3af; background: #f9fafb; }
.leads-table td { padding: 12px 14px; border-top: 1px solid #f3f4f6; vertical-align: middle; }
.leads-table tr:hover td { background: #f9fafb; }
.lead-avatar { width: 32px; height: 32px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: #15803d; flex-shrink: 0; }
.badge { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge.qualified { background: #dcfce7; color: #15803d; }
.badge.enquiry { background: #dbeafe; color: #1d4ed8; }
.badge.disqualified { background: #fee2e2; color: #dc2626; }
.action-btn { padding: 5px 8px; border-radius: 6px; border: none; background: none; cursor: pointer; transition: background .2s; font-size: 15px; }
.action-btn.call:hover { background: #dcfce7; }
.action-btn.mail:hover { background: #dbeafe; }
.action-btn.del:hover { background: #fee2e2; }
.lead-detail { margin-top: 12px; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px 24px; }
.lead-detail-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.lead-detail-head h3 { font-weight: 800; font-size: 1rem; }
.btn-close-detail { background: none; border: none; font-size: 22px; color: #9ca3af; cursor: pointer; line-height: 1; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 13px; }
.detail-grid .lbl { color: #9ca3af; margin-bottom: 2px; font-size: 12px; }
.detail-grid .val { font-weight: 600; color: #111827; }
.detail-grid a { color: #15803d; }
.empty-leads { text-align: center; padding: 60px 20px; color: #9ca3af; }
.empty-leads .ico { font-size: 40px; opacity: .3; margin-bottom: 12px; }
.empty-leads p { font-weight: 600; margin-bottom: 4px; }
.empty-leads span { font-size: 13px; }

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-body { padding: 16px; }
  .crm-stats { grid-template-columns: repeat(2,1fr); }
  .result-actions { grid-template-columns: 1fr; }
}
