
        body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to right, #0d1f0d, #1a3c1a);
            color: #f0f0f0;
            line-height: 1.6;
        }

        a { color: #4CAF50; text-decoration: none; }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section { padding: 80px 0; }

        h1, h2, h3 { font-weight: 600; line-height: 1.2; margin-top: 0; }
        h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .text-center { text-align: center; }

       header {
            background: #2E7D32;
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo-container { display: flex; align-items: center; gap: 15px; }
        .logo { font-size: 1.8rem; font-weight: 700; color: #fff; display: flex; align-items: center; }
        .logo-text { font-size: 14px; font-weight: 700; color: black; margin: 0; }
        .logo img { height: 50px; width: auto; border-radius: 8px; }

        .nav-links { display: flex; list-style: none; gap: 30px; }
        .nav-links a { color: #e0e0e0; font-weight: 500; transition: color 0.3s; position: relative;
        font-size: 15px }
        .nav-links a:hover { color: #ffffff; }
        .nav-links a::after {
            content: ""; position: absolute; width: 0; height: 2px;
            bottom: -5px; left: 0; background-color: #C8E6C9; transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .hero {
            padding-top: 160px; padding-bottom: 100px;
            display: flex; align-items: center; min-height: 80vh;
        }
        .hero-content { flex: 1; padding-right: 50px; }
        .hero-image { flex: 1; text-align: center; }
        .hero-image img {
            width: 250px; height: 550px; border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: transform 0.3s;
        }
        .hero-image :hover { transform: scale(1.05); }

        .app-badges { display: flex; gap: 15px; margin-top: 30px; }
        .app-badge { display: inline-block; transition: transform 0.3s; }
        .app-badge:hover { transform: translateY(-5px); }
        .app-badge img { height: 50px; }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px; text-align: center;
        }
        .stat-item h3 { font-size: 2.5rem; color: #66BB6A; margin-bottom: 5px; }

        .section-header { margin-bottom: 60px; }
        .section-header p {
            text-transform: uppercase; letter-spacing: 2px;
            font-size: 0.9rem; color: #a0a0a0; margin-bottom: 10px;
        }
        .divider { height: 3px; width: 60px; background: #4CAF50; margin: 20px auto; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .feature-card {
            background: rgba(40,50,40,0.6); border-radius: 15px; padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s; text-align: center;
            border: 1px solid rgba(76,175,80,0.2);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(76,175,80,0.2);
        }
        .feature-icon {
            width: 70px; height: 70px; background: rgba(76,175,80,0.1);
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; margin: 0 auto 20px;
        }
        .feature-icon svg { width: 30px; height: 30px; fill: #66BB6A; }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px; margin-top: 40px;
        }
        .step-item {
            background: rgba(40,50,40,0.6); border-radius: 15px; padding: 30px;
            text-align: center; border: 1px solid rgba(76,175,80,0.2);
        }
        .step-number {
            width: 50px; height: 50px; background: #4CAF50; color: white;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; font-weight: bold; margin: 0 auto 20px;
        }

        .user-type-section { margin: 60px 0; }
        .user-type-header { display: flex; align-items: center; margin-bottom: 30px; }
        .user-type-icon { font-size: 2rem; margin-right: 15px; }

        .user-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .user-feature {
            background: rgba(40,50,40,0.4); padding: 20px;
            border-radius: 10px; border-left: 4px solid #4CAF50;
        }

        .ceo-content { display: flex; gap: 40px; align-items: flex-start; }
        .ceo-image { flex: 1; text-align: center; }
        .ceo-image img { max-width: 100%; border-radius: 15px; }
        .ceo-text { flex: 2; }

        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px; margin-top: 40px;
        }
        .screenshot {
            border-radius: 15px; overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: transform 0.3s;
            border: 2px solid rgba(76,175,80,0.3);
        }
        .screenshot:hover { transform: scale(1.05); border-color: #4CAF50; }
        .screenshot img { width: 100%; height: auto; display: block; }

        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item {
            background: rgba(40,50,40,0.6); border-radius: 10px;
            margin-bottom: 15px; overflow: hidden;
            border: 1px solid rgba(76,175,80,0.2);
        }
        .faq-question {
            padding: 20px; cursor: pointer; display: flex;
            justify-content: space-between; align-items: center; font-weight: 500;
        }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; }
        .faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 200px; }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px; margin-bottom: 50px;
        }
        .contact-item {
            text-align: center; padding: 30px 20px;
            background: rgba(40,50,40,0.6); border-radius: 15px;
            border: 1px solid rgba(76,175,80,0.2);
        }
        .contact-icon {
            width: 60px; height: 60px; background: rgba(76,175,80,0.1);
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; margin: 0 auto 20px;
        }
        .contact-icon svg { width: 24px; height: 24px; fill: #66BB6A; }

        .form-group { margin-bottom: 20px; }
        .form-control {
            width: 100%; padding: 15px;
            background: rgba(40,50,40,0.6); border: 1px solid #2d3e2d;
            border-radius: 10px; color: #f0f0f0; font-size: 1rem; box-sizing: border-box;
        }
        .form-control:focus { border-color: #4CAF50; outline: none; }
        textarea.form-control { min-height: 150px; resize: vertical; }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white; padding: 15px 30px; border-radius: 10px;
            border: none; font-size: 1rem; font-weight: 500; cursor: pointer;
            transition: all 0.3s; box-shadow: 0 4px 15px rgba(76,175,80,0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #43A047, #4CAF50);
            transform: translateY(-3px); box-shadow: 0 6px 20px rgba(76,175,80,0.4);
        }

        footer {
            background: rgba(13,31,13,0.9);
            padding: 80px 0 40px; text-align: center;
        }
        .social-links { display: flex; justify-content: center; gap: 20px; margin: 30px 0; }
        .social-icon {
            width: 50px; height: 50px; background: rgba(255,255,255,0.05);
            border-radius: 50%; display: flex; align-items: center;
            justify-content: center; transition: background 0.3s, transform 0.3s;
        }
        .social-icon:hover { background: rgba(76,175,80,0.2); transform: translateY(-5px); }
        .social-icon svg { width: 20px; height: 20px; fill: #f0f0f0; }
        .copyright { margin-top: 40px; color: #a0a0a0; font-size: 0.9rem; }

        #future-services { padding: 60px 0; border-radius: 20px; margin: 40px 0; }
        #future-services h2 { margin-bottom: 20px; color: #ffffff; }
        #future-services > .container > p {
            text-transform: uppercase; letter-spacing: 2px;
            font-size: 0.9rem; color: #a0a0a0; margin-bottom: 10px;
        }

        /* =============================================
           PROVIDER SIGN-UP FORM STYLES
        ============================================= */
        #provider-signup {
            background: linear-gradient(135deg, rgba(13,31,13,0.95), rgba(26,60,26,0.95));
            border-top: 1px solid rgba(76,175,80,0.3);
            border-bottom: 1px solid rgba(76,175,80,0.3);
            position: relative;
            overflow: hidden;
        }

        #provider-signup::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(76,175,80,0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .signup-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 60px;
            align-items: start;
        }

        .signup-pitch {
            padding-top: 20px;
        }

        .signup-pitch .launch-badge {
            display: inline-block;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
        }

        .signup-pitch h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2.8rem;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #fff;
        }

        .signup-pitch h2 span {
            color: #66BB6A;
        }

        .signup-pitch p {
            color: #b0c4b0;
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .pitch-perks {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
        }

        .pitch-perks li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(76,175,80,0.1);
            color: #d0e8d0;
            font-size: 0.95rem;
        }

        .pitch-perks li:last-child { border-bottom: none; }

        .perk-icon {
            width: 28px;
            height: 28px;
            background: rgba(76,175,80,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .pricing-highlight {
            background: rgba(76,175,80,0.1);
            border: 1px solid rgba(76,175,80,0.3);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .pricing-highlight .free-months {
            font-size: 2.5rem;
            font-weight: 700;
            color: #66BB6A;
            line-height: 1;
        }

        .pricing-highlight .free-label {
            color: #a0c0a0;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }

        .pricing-highlight .then-price {
            color: #d0e8d0;
            font-size: 0.95rem;
        }

        .pricing-highlight .then-price strong {
            color: #fff;
        }

        /* Form Card */
        .signup-form-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(76,175,80,0.25);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .signup-form-card h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 8px;
        }

        .signup-form-card .form-subtitle {
            color: #a0b8a0;
            font-size: 0.9rem;
            margin-bottom: 28px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .signup-form-card .form-control {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(76,175,80,0.2);
            border-radius: 10px;
            color: #f0f0f0;
            padding: 13px 16px;
            font-size: 0.95rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .signup-form-card .form-control:focus {
            border-color: #4CAF50;
            box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
            outline: none;
        }

        .signup-form-card .form-control option {
            background: #1a3c1a;
        }

        .form-label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #90b890;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .radio-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(76,175,80,0.2);
            border-radius: 8px;
            padding: 10px 16px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
            min-width: 120px;
        }

        .radio-option:has(input:checked) {
            background: rgba(76,175,80,0.15);
            border-color: #4CAF50;
        }

        .radio-option input[type="radio"] {
            accent-color: #4CAF50;
        }

        .radio-option span {
            font-size: 0.9rem;
            color: #d0e8d0;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #2E7D32, #4CAF50, #66BB6A);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(76,175,80,0.4);
            margin-top: 8px;
        }

        .submit-btn:hover {
            background-position: right center;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(76,175,80,0.5);
        }

        .submit-btn:active { transform: translateY(0); }

        .form-footer-note {
            text-align: center;
            font-size: 0.8rem;
            color: #708070;
            margin-top: 16px;
        }

        /* Success message */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success .success-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .form-success h3 {
            color: #66BB6A;
            font-size: 1.6rem;
            margin-bottom: 12px;
        }

        .form-success p {
            color: #a0b8a0;
            font-size: 0.95rem;
        }

        /* =============================================
           ADMIN PANEL STYLES
        ============================================= */
        #admin-panel {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 9999;
            overflow-y: auto;
            padding: 20px;
        }

        .admin-inner {
            max-width: 1100px;
            margin: 40px auto;
            background: #0f2010;
            border: 1px solid rgba(76,175,80,0.3);
            border-radius: 20px;
            padding: 40px;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: gap;
            gap: 16px;
        }

        .admin-header h2 {
            color: #66BB6A;
            margin: 0;
            font-size: 1.8rem;
        }

        .admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }

        .admin-btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .admin-btn-green {
            background: #4CAF50;
            color: white;
        }

        .admin-btn-green:hover { background: #43A047; }

        .admin-btn-red {
            background: rgba(220,50,50,0.2);
            color: #ff8080;
            border: 1px solid rgba(220,50,50,0.3);
        }

        .admin-btn-red:hover { background: rgba(220,50,50,0.3); }

        .admin-btn-gray {
            background: rgba(255,255,255,0.08);
            color: #ccc;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .admin-btn-gray:hover { background: rgba(255,255,255,0.12); }

        .admin-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin-bottom: 30px;
        }

        .admin-stat {
            background: rgba(76,175,80,0.08);
            border: 1px solid rgba(76,175,80,0.2);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .admin-stat .num {
            font-size: 2rem;
            font-weight: 700;
            color: #66BB6A;
        }

        .admin-stat .lbl {
            font-size: 0.8rem;
            color: #708070;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submissions-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
        }

        .submissions-table th {
            background: rgba(76,175,80,0.15);
            color: #90d090;
            padding: 12px 14px;
            text-align: left;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border-bottom: 1px solid rgba(76,175,80,0.2);
        }

        .submissions-table td {
            padding: 12px 14px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: #d0e8d0;
            vertical-align: top;
        }

        .submissions-table tr:hover td { background: rgba(76,175,80,0.05); }

        .badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .badge-yes { background: rgba(76,175,80,0.2); color: #66BB6A; }
        .badge-maybe { background: rgba(255,165,0,0.2); color: #ffa500; }
        .badge-info { background: rgba(100,149,237,0.2); color: #87b5ff; }

        .no-submissions {
            text-align: center;
            padding: 60px 20px;
            color: #708070;
        }

        .no-submissions .icon { font-size: 3rem; margin-bottom: 16px; }

        .admin-password-screen {
            text-align: center;
            padding: 60px 20px;
        }

        .admin-password-screen h3 {
            color: #66BB6A;
            margin-bottom: 20px;
        }

        .admin-password-screen input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(76,175,80,0.3);
            border-radius: 8px;
            color: #fff;
            padding: 12px 16px;
            font-size: 1rem;
            width: 280px;
            max-width: 100%;
            margin-bottom: 12px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Admin trigger button (hidden, discreet) */
        .admin-trigger {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(76,175,80,0.15);
            border: 1px solid rgba(76,175,80,0.3);
            color: #66BB6A;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 999;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .admin-trigger:hover {
            background: rgba(76,175,80,0.3);
            transform: scale(1.1);
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #2E7D32;
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            z-index: 99999;
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        }

        .toast.show { transform: translateX(-50%) translateY(0); }

        @media (max-width: 992px) {
            .hero { flex-direction: column; text-align: center; padding-top: 140px; }
            .hero-content { padding-right: 0; margin-bottom: 50px; }
            .app-badges { justify-content: center; }
            .ceo-content { flex-direction: column; }
            .signup-wrapper { grid-template-columns: 1fr; gap: 40px; }
            .signup-pitch h2 { font-size: 2.2rem; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            h2 { font-size: 2rem; }
            section { padding: 60px 0; }
            .form-row { grid-template-columns: 1fr; }
            .signup-form-card { padding: 24px; }
        }

        @media (max-width: 480px) {
            .logo-container { flex-direction: column; gap: 5px; }
        }

