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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5530 100%);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="60" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: #7dd87d;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::before {
            content: "";
            width: 32px;
            height: 32px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: block;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .nav-btn {
            background: transparent;
            border: 2px solid #4ade80;
            color: #4ade80;
            padding: 12px 28px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .nav-btn:hover, .nav-btn.active {
            background: #4ade80;
            color: #0f2027;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
        }

        .hero {
            text-align: center;
            padding: 120px 0 80px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .platform-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .platform-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: #d1fae5;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 12px 20px;
            border-radius: 15px;
            border: 1px solid rgba(74, 222, 128, 0.2);
            background: rgba(74, 222, 128, 0.05);
        }

        .platform-item:hover {
            transform: translateY(-2px);
            border-color: rgba(74, 222, 128, 0.4);
            background: rgba(74, 222, 128, 0.1);
        }

        .platform-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .platform-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .platform-title {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }

        .platform-subtitle {
            font-size: 14px;
            color: #a7f3d0;
            font-weight: 300;
        }

        .cta-button {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            color: #0f2027;
            padding: 18px 40px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(74, 222, 128, 0.4);
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            border-radius: 50%;
            color: #0f2027;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
        }

        /* Page Content */
        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        .features {
            padding: 120px 0;
            background: rgba(15, 32, 39, 0.3);
            backdrop-filter: blur(10px);
            margin-top: 100px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-top: 80px;
            padding: 0 20px;
        }

        .feature-card {
            background: rgba(74, 222, 128, 0.08);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 20px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.4);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }

        .feature-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .feature-description {
            color: #a7f3d0;
            line-height: 1.6;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #a7f3d0;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 120px 0;
            background: rgba(15, 32, 39, 0.25);
            backdrop-filter: blur(10px);
            margin-top: 80px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            margin-top: 80px;
            padding: 0 20px;
        }

        .review-category {
            text-align: center;
        }

        .review-category h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #4ade80;
            margin-bottom: 40px;
        }

        .review-card {
            background: rgba(74, 222, 128, 0.08);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 20px;
            padding: 40px 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .review-card:hover {
            transform: translateY(-5px);
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.4);
        }

        .review-stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .review-text {
            color: #a7f3d0;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .review-author {
            color: #ffffff;
            font-weight: 600;
        }

        .review-role {
            color: #4ade80;
            font-size: 14px;
        }

        /* Clients Section */
        .clients-section {
            padding: 120px 0;
            background: rgba(15, 32, 39, 0.25);
            backdrop-filter: blur(10px);
            margin-top: 80px;
        }

        /* Workers Section */
        .workers-section {
            padding: 120px 0;
            background: rgba(15, 32, 39, 0.35);
            backdrop-filter: blur(10px);
            margin-top: 80px;
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: rgba(15, 32, 39, 0.2);
            backdrop-filter: blur(10px);
            margin-top: 80px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 80px;
            padding: 0 20px;
        }

        .service-card {
            background: rgba(74, 222, 128, 0.08);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 15px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(8px);
            margin-bottom: 15px;
        }

        .service-card:hover {
            transform: translateY(-3px);
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.4);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 20px;
        }

        .service-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .service-description {
            color: #a7f3d0;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5530 100%);
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #4ade80;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #22c55e;
            transform: scale(1.1);
        }

        .modal h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 10px;
            text-align: center;
        }

        .modal p {
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            margin-bottom: 30px;
        }

        /* Modal Tabs */
        .modal-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .modal-tab {
            background: transparent;
            border: 2px solid #4ade80;
            color: #4ade80;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-tab.active {
            background: #4ade80;
            color: #0f2027;
        }

        .modal-tab-content {
            display: none;
        }

        .modal-tab-content.active {
            display: block;
        }

        .modal-tab-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #4ade80;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #4ade80;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: #0f2027;
            color: #ffffff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            color: #0f2027;
            padding: 14px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .success-message {
            display: none;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            color: #4ade80;
        }

        /* Be First Section Styles */
        .be-first-section {
            background: rgba(15, 32, 39, 0.4);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(74, 222, 128, 0.2);
            padding: 80px 0;
            margin-top: 60px;
        }

        .section-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .be-first-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .be-first-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .email-signup {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .email-signup input {
            flex: 1;
            padding: 14px 20px;
            border: 1px solid rgba(74, 222, 128, 0.3);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .email-signup input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .email-signup input:focus {
            border-color: #4ade80;
            background: rgba(255, 255, 255, 0.15);
        }

        .email-signup button {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            color: #0f2027;
            padding: 14px 24px;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .email-signup button:hover {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            transform: translateY(-1px);
        }

        .privacy-note {
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Footer Styles */
        .footer-section {
            background: rgba(15, 32, 39, 0.6);
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(74, 222, 128, 0.2);
            margin-top: 80px;
            padding: 60px 0 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-logo .logo {
            margin-bottom: 15px;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            font-style: italic;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-column h4 {
            color: #4ade80;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #4ade80;
            transform: translateX(5px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(74, 222, 128, 0.1);
        }

        .copyright p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 50%;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(74, 222, 128, 0.2);
            border-color: #4ade80;
            transform: translateY(-2px);
        }

        /* Custom Scrollbar for Modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(74, 222, 128, 0.1);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: rgba(74, 222, 128, 0.3);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(74, 222, 128, 0.5);
        }

        @media (max-width: 768px) {
            .nav-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .nav-btn {
                padding: 10px 20px;
                font-size: 13px;
            }

            .platform-info {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .platform-item {
                justify-content: center;
                width: 100%;
                max-width: 300px;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .features, .services, .clients-section, .workers-section, .reviews-section {
                padding: 60px 0;
                margin-top: 60px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .modal-content {
                padding: 30px 20px;
                margin: 20px;
                max-height: 85vh;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .modal-tabs {
                flex-direction: column;
                gap: 10px;
            }

            /* Be First Section Mobile */
            .be-first-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .be-first-section h2 {
                font-size: 2rem;
            }

            .email-signup {
                flex-direction: column;
                gap: 15px;
            }

            /* Footer Mobile */
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .features-grid {
                gap: 35px;
                padding: 0 10px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }
            
            .feature-card {
                padding: 40px 25px;
                margin-bottom: 15px;
            }
            
            .service-card {
                padding: 30px 20px;
                margin-bottom: 10px;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 20px 0;
                flex-direction: column;
                gap: 20px;
            }

            .logo {
                font-size: 20px;
            }

            .nav-buttons {
                flex-direction: row;
                gap: 10px;
            }

            .nav-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .hero h1 {
                margin-bottom: 40px;
            }

            .platform-info {
                gap: 15px;
            }

            .cta-button {
                padding: 16px 32px;
                font-size: 15px;
            }

            .modal-content {
                padding: 25px 15px;
                max-height: 80vh;
            }

            /* Be First Section Mobile */
            .be-first-section {
                padding: 50px 0;
            }

            .be-first-section h2 {
                font-size: 1.8rem;
            }

            /* Footer Mobile */
            .footer-section {
                padding: 40px 0 20px;
                margin-top: 60px;
            }

            .footer-main {
                gap: 30px;
            }

            .footer-links {
                gap: 25px;
            }

            .footer-column h4 {
                font-size: 15px;
                margin-bottom: 15px;
            }

            .footer-column ul li {
                margin-bottom: 10px;
            }

            .footer-column ul li a {
                font-size: 13px;
            }

            .social-links a {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .scroll-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }