            .btn-signin a {
                color: #35D1D1;
                text-decoration: none;
            }
            
            .btn-signin:hover {
                background: rgba(53, 209, 209, 0.1);
                transform: translateY(-2px);
            }
            
            .btn-join a {
                color: white;
                text-decoration: none;
            }
            /* Hero Section */
            
            .hero {
                margin-top: 70px;
                padding: 100px 5% 80px;
                background: linear-gradient(135deg, #ffffff 0%, #f7fffe 100%);
                position: relative;
                overflow: hidden;
            }
            
            .hero::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -20%;
                width: 800px;
                height: 800px;
                background: radial-gradient(circle, rgba(53, 209, 209, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }
            
            .hero-container {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
                position: relative;
                z-index: 1;
            }
            
            .hero-content h1 {
                font-size: 56px;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 24px;
                line-height: 1.1;
                letter-spacing: -1px;
            }
            
            .hero-content h1 .highlight {
                color: #35D1D1;
                position: relative;
            }
            
            .hero-content p {
                font-size: 18px;
                color: #718096;
                margin-bottom: 32px;
                line-height: 1.7;
            }
            
            .hero-buttons {
                display: flex;
                gap: 16px;
                flex-wrap: wrap;
            }
            
            .btn-large {
                padding: 16px 40px;
                font-size: 16px;
                border-radius: 10px;
            }
            
            .hero-stats {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
                margin-top: 60px;
            }
            
            .stat-item h3 {
                font-size: 36px;
                color: #35D1D1;
                font-weight: 700;
                margin-bottom: 4px;
            }
            
            .stat-item p {
                font-size: 14px;
                color: #718096;
                font-weight: 500;
            }
            
            .hero-image {
                position: relative;
            }
            
            .hero-card {
                background: white;
                border-radius: 16px;
                padding: 32px;
                box-shadow: 0 20px 60px rgba(53, 209, 209, 0.15);
                border: 1px solid rgba(53, 209, 209, 0.1);
            }
            
            .profile-header {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 24px;
            }
            
            .avatar {
                width: 60px;
                height: 60px;
                min-width: 60px;
                border-radius: 50%;
                background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 24px;
                font-weight: 600;
            }
            
            .profile-info h4 {
                font-size: 18px;
                color: #1a202c;
                font-weight: 600;
                margin-bottom: 4px;
            }
            
            .profile-info p {
                font-size: 14px;
                color: #718096;
                margin: 0;
            }
            
            .skills {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 24px;
            }
            
            .skill-tag {
                background: rgba(53, 209, 209, 0.1);
                color: #35D1D1;
                padding: 6px 14px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 500;
            }
            
            .connection-status {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-top: 20px;
                border-top: 1px solid rgba(53, 209, 209, 0.1);
                flex-wrap: wrap;
                gap: 12px;
            }
            
            .connection-count {
                font-size: 14px;
                color: #718096;
            }
            
            .connection-count strong {
                color: #35D1D1;
                font-weight: 600;
            }
            
            .btn-connect {
                background: #35D1D1;
                color: white;
                padding: 8px 20px;
                border-radius: 6px;
                border: none;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .btn-connect:hover {
                background: #2bb8b8;
                transform: translateY(-2px);
            }
            /* Features Section */
            
            .features {
                padding: 100px 5%;
                background: white;
            }
            
            .features-container {
                max-width: 1400px;
                margin: 0 auto;
            }
            
            .section-header {
                text-align: center;
                margin-bottom: 60px;
            }
            
            .section-header h2 {
                font-size: 42px;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 16px;
                letter-spacing: -0.5px;
            }
            
            .section-header p {
                font-size: 18px;
                color: #718096;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 32px;
            }
            
            .feature-card {
                background: white;
                padding: 32px;
                border-radius: 16px;
                border: 1px solid rgba(53, 209, 209, 0.1);
                transition: all 0.3s;
                position: relative;
                overflow: hidden;
            }
            
            .feature-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, #35D1D1 0%, #2bb8b8 100%);
                transform: scaleX(0);
                transition: transform 0.3s;
            }
            
            .feature-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(53, 209, 209, 0.15);
            }
            
            .feature-card:hover::before {
                transform: scaleX(1);
            }
            
            .feature-icon {
                width: 64px;
                height: 64px;
                background: rgba(53, 209, 209, 0.1);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 32px;
                margin-bottom: 20px;
            }
            
            .feature-card h3 {
                font-size: 20px;
                color: #1a202c;
                font-weight: 600;
                margin-bottom: 12px;
            }
            
            .feature-card p {
                font-size: 15px;
                color: #718096;
                line-height: 1.6;
            }
            /* Resume Builder Section */
            
            .resume-builder {
                padding: 100px 5%;
                background: #f7fffe;
            }
            
            .resume-container {
                max-width: 1400px;
                margin: 0 auto;
            }
            
            .resume-features {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 24px;
                margin: 50px 0;
            }
            
            .resume-feature {
                text-align: center;
                padding: 28px 20px;
                background: white;
                border-radius: 12px;
                border: 1px solid rgba(53, 209, 209, 0.1);
                transition: all 0.3s;
            }
            
            .resume-feature:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(53, 209, 209, 0.1);
            }
            
            .resume-feature-icon {
                font-size: 40px;
                margin-bottom: 16px;
            }
            
            .resume-feature h4 {
                font-size: 18px;
                color: #1a202c;
                font-weight: 600;
                margin-bottom: 8px;
            }
            
            .resume-feature p {
                font-size: 14px;
                color: #718096;
                line-height: 1.5;
            }
            
            .templates-title {
                font-size: 32px;
                font-weight: 700;
                color: #1a202c;
                text-align: center;
                margin: 70px 0 40px;
            }
            
            .resume-templates {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 28px;
            }
            
            .template-card {
                background: white;
                border-radius: 16px;
                overflow: hidden;
                border: 1px solid rgba(53, 209, 209, 0.1);
                transition: all 0.3s;
                cursor: pointer;
            }
            
            .template-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(53, 209, 209, 0.15);
            }
            
            .template-preview {
                height: 280px;
                padding: 24px;
                position: relative;
                overflow: hidden;
            }
            
            .template-preview.modern {
                background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            }
            
            .template-preview.creative {
                background: white;
                display: flex;
            }
            
            .template-preview.minimal {
                background: #ffffff;
                border-bottom: 1px solid #e2e8f0;
            }
            
            .template-preview.executive {
                background: #f8f9fa;
            }
            
            .template-header {
                margin-bottom: 20px;
            }
            
            .temp-name {
                font-size: 20px;
                font-weight: 700;
                color: #35D1D1;
                margin-bottom: 4px;
            }
            
            .temp-title {
                font-size: 14px;
                color: #718096;
            }
            
            .template-content {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            
            .temp-line {
                height: 8px;
                background: #cbd5e0;
                border-radius: 4px;
            }
            
            .temp-line.short {
                width: 70%;
            }
            
            .template-sidebar {
                width: 35%;
                background: #35D1D1;
                padding: 20px;
            }
            
            .template-main {
                flex: 1;
                padding: 20px;
            }
            
            .temp-circle {
                width: 50px;
                height: 50px;
                background: #35D1D1;
                border-radius: 50%;
                margin-bottom: 16px;
            }
            
            .temp-dots {
                display: flex;
                gap: 8px;
                justify-content: center;
                margin-bottom: 24px;
            }
            
            .temp-dots span {
                width: 8px;
                height: 8px;
                background: #35D1D1;
                border-radius: 50%;
            }
            
            .template-header-exec {
                background: #35D1D1;
                height: 60px;
                display: flex;
                align-items: center;
                padding: 0 24px;
                margin-bottom: 20px;
            }
            
            .temp-line-white {
                height: 8px;
                background: white;
                border-radius: 4px;
                width: 60%;
            }
            
            .template-card h4 {
                font-size: 18px;
                color: #1a202c;
                font-weight: 600;
                margin: 20px 20px 8px;
            }
            
            .template-card p {
                font-size: 14px;
                color: #718096;
                margin: 0 20px 20px;
            }
            
            .btn-template {
                width: calc(100% - 40px);
                margin: 0 20px 20px;
                padding: 12px;
                background: transparent;
                color: #35D1D1;
                border: 2px solid #35D1D1;
                border-radius: 8px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }
            
            .btn-template a {
                color: #35D1D1;
                text-decoration: none;
            }
            
            .btn-template:hover {
                background: #35D1D1;
                color: white;
                transform: translateY(-2px);
            }
            .btn-template:hover a{
                color: white;
            }
            /* CTA Section */
            
            .cta {
                padding: 80px 5%;
                background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
                position: relative;
                overflow: hidden;
            }
            
            .cta::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 600px;
                height: 600px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
            }
            
            .cta-container {
                max-width: 1000px;
                margin: 0 auto;
                text-align: center;
                position: relative;
                z-index: 1;
            }
            
            .cta h2 {
                font-size: 42px;
                color: white;
                font-weight: 700;
                margin-bottom: 20px;
                letter-spacing: -0.5px;
            }
            
            .cta p {
                font-size: 18px;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 32px;
            }
            
            .btn-white {
                background: white;
                color: #35D1D1;
                padding: 16px 40px;
                font-size: 16px;
                border-radius: 10px;
                font-weight: 600;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            }
            
            .btn-white a {
                color: #35D1D1;
                text-decoration: none;
            }
            
            .btn-white:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
            }
            /* Testimonials */
            
            .testimonials {
                padding: 100px 5%;
                background: white;
            }
            
            .testimonials-container {
                max-width: 1400px;
                margin: 0 auto;
            }
            
            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 28px;
                margin-top: 50px;
            }
            
            .testimonial-card {
                background: white;
                padding: 32px;
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(53, 209, 209, 0.08);
                border: 1px solid rgba(53, 209, 209, 0.1);
                transition: all 0.3s;
            }
            
            .testimonial-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(53, 209, 209, 0.15);
            }
            
            .quote {
                font-size: 16px;
                color: #4a5568;
                line-height: 1.7;
                margin-bottom: 24px;
                font-style: italic;
            }
            
            .author {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            
            .author-avatar {
                width: 48px;
                height: 48px;
                min-width: 48px;
                border-radius: 50%;
                background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 600;
            }
            
            .author-info h5 {
                font-size: 16px;
                color: #1a202c;
                font-weight: 600;
                margin-bottom: 2px;
            }
            
            .author-info p {
                font-size: 13px;
                color: #718096;
                margin: 0;
            }
            
            .section-gray {
                background: #f9f9f9;
            }
            
            .creative-section,
            .arvr-section {
                padding: 60px 30px;
                max-width: 1200px;
                margin: auto
            }
            
            .section-content {
                display: flex;
                gap: 40px;
                align-items: flex-start;
                flex-wrap: wrap;
                justify-content: space-between
            }
            
            .section-left {
                flex: 1 1 300px;
                min-width: 280px
            }
            
            .section-left h2 {
                font-size: 26px;
                margin-bottom: 12px;
                color: #000
            }
            
            .section-left p {
                font-size: 15px;
                line-height: 1.5;
                color: #333
            }
            
            .content-tags {
                flex: 1 1 500px;
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: flex-start
            }
            
            .content-tag {
                padding: 10px 18px;
                border: 1px solid #999;
                border-radius: 999px;
                background: #fff;
                font-size: 15px;
                transition: background .2s;
                outline-offset: 2px;
                text-decoration: none;
                color: #555;
            }
            
            .work-section {
                display: flex;
                align-items: center;
                justify-content: space-between
            }
            
            .work-text {
                flex: 1
            }
            
            .work-text h2 {
                color: #b24020;
                font-size: 24px;
                margin-bottom: 16px
            }
            
            .work-text p {
                font-size: 15px;
                line-height: 1.6;
                color: #444
            }
            
            .work-image {
                flex: 1;
                display: flex;
                justify-content: center
            }
            
            .work-image img {
                width: 280px;
                height: 280px;
                object-fit: cover;
                border-radius: 50%;
                box-shadow: 0 4px 10px rgba(0, 0, 0, .15)
            }
            
            .card {
                text-align: center
            }
            
            .card {
                background-color: #fafafa;
                padding: 20px;
                border-radius: 12px
            }
            
            .card img {
                width: 100%;
                max-width: 220px;
                height: auto;
                object-fit: contain;
                margin: 0 auto 20px;
                display: block
            }
            
            .card h2 {
                font-size: 1.4rem;
                margin-bottom: 15px;
                color: #222
            }
            
            .card button,
            .card select {
                padding: 10px 16px;
                font-size: 1rem;
                border: 1px solid #ccc;
                border-radius: 25px;
                background-color: #fff;
                width: 90%;
                max-width: 300px;
                cursor: pointer
            }
            
            .card button:hover,
            .card select:hover {
                background-color: #f0f0f0
            }
            
            .section-title {
                font-size: 1rem;
                font-weight: 700;
                color: #555;
                margin-bottom: 10px;
                text-transform: uppercase
            }
            
            .testimonials .container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                max-width: 1100px;
                margin: auto
            }
            
            .section-content {
                display: flex;
                gap: 40px;
                align-items: flex-start;
                flex-wrap: wrap;
                justify-content: space-between
            }
            
            .btn-group {
                display: flex;
                gap: 16px;
                margin-top: 24px;
                flex-wrap: wrap;
            }
            
            .btn-group .btn {
                background-color: #4A90E2;
                color: #fff;
                padding: 12px 20px;
                border: none;
                border-radius: 8px;
                cursor: pointer;
                font-weight: 600;
                transition: background 0.3s ease;
            }
            
            .btn-group .btn:hover {
                background-color: #357ABD;
            }
            
            .section-right img {
                max-width: 100%;
                margin-top: 20px;
            }
            
            #popup {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.7);
                display: none;
                align-items: center;
                justify-content: center;
                z-index: 9999;
            }
            
            #popupInner {
                position: relative;
                background: transparent;
                padding: 0;
                border-radius: 12px;
                max-width: 90%;
                max-height: 90%;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
            }
            
            #closeBtn {
                position: absolute;
                top: 10px;
                right: 15px;
                font-size: 30px;
                font-weight: bold;
                color: white;
                background: rgba(0, 0, 0, 0.5);
                border: none;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                cursor: pointer;
                z-index: 20;
                line-height: 38px;
                text-align: center;
                user-select: none;
                transition: background 0.3s ease;
            }
            
            #closeBtn:hover {
                background: rgba(255, 0, 0, 0.8);
            }
            
            .faq {
                padding: 100px 5%;
                background: white;
            }
            
            .faq-container {
                max-width: 900px;
                margin: 60px auto 0;
            }
            
            .faq-item {
                background: white;
                border-radius: 12px;
                margin-bottom: 16px;
                border: 1px solid rgba(53, 209, 209, 0.1);
                overflow: hidden;
                transition: all 0.3s;
            }
            
            .faq-item:hover {
                box-shadow: 0 4px 20px rgba(53, 209, 209, 0.1);
            }
            
            .faq-question {
                padding: 24px 28px;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-weight: 600;
                font-size: 17px;
                color: #1a202c;
                user-select: none;
            }
            
            .faq-question:hover {
                color: #35D1D1;
            }
            
            .faq-toggle {
                font-size: 24px;
                color: #35D1D1;
                transition: transform 0.3s;
            }
            
            .faq-item.active .faq-toggle {
                transform: rotate(45deg);
            }
            
            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: all 0.3s ease-out;
                padding: 0 28px;
            }
            
            .faq-item.active .faq-answer {
                max-height: 300px;
                padding: 0 28px 24px;
            }
            
            .faq-answer p {
                font-size: 15px;
                color: #4a5568;
                line-height: 1.7;
            }
            
            @media (max-width: 1024px) {
                .testimonials .container {
                    grid-template-columns: 1fr 1fr;
                    gap: 30px
                }
                .section-content {
                    flex-direction: column;
                    gap: 20px
                }
                .hero-content h1 {
                    font-size: 44px;
                }
                .work-section {
                    flex-direction: column;
                    text-align: center
                }
                .section-left,
                .content-tags {
                    flex: 1 1 100%;
                    min-width: auto;
                }
                .creative-tags {
                    justify-content: center
                }
                .section-content {
                    flex-direction: column;
                    gap: 20px
                }
                .section-header h2,
                .cta h2 {
                    font-size: 36px;
                }
                .nav-left {
                    gap: 24px;
                }
            }
            
            @media (max-width: 768px) {
                .hero {
                    padding: 60px 5% 50px;
                }
                .testimonials .container {
                    grid-template-columns: 1fr
                }
                #popupInner {
                    max-width: 100%;
                    max-height: 100%;
                }
                .testimonials .container {
                    gap: 30px
                }
                .arvr-section .section-content {
                    flex-direction: column;
                    text-align: center;
                }
                .section-content {
                    padding: 40px 20px
                }
                .card {
                    padding: 16px
                }
                .card h2 {
                    font-size: 1.1rem
                }
                .card button,
                .card select {
                    font-size: .95rem
                }
                .card img {
                    max-width: 160px;
                    margin-bottom: 16px
                }
                .section-tag {
                    font-size: 14px;
                    padding: 8px 14px
                }
                .tags {
                    justify-content: center;
                    gap: 10px
                }
                .section-left h2 {
                    font-size: 20px;
                    text-align: center
                }
                .section-left p {
                    font-size: 14px;
                    text-align: center
                }
                .hero-container {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .hero-content h1 {
                    font-size: 36px;
                }
                .hero-content p {
                    font-size: 16px;
                }
                .hero-stats {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;
                }
                .stat-item h3 {
                    font-size: 28px;
                }
                .stat-item p {
                    font-size: 12px;
                }
                .hero-buttons {
                    flex-direction: column;
                }
                .btn-large {
                    width: 100%;
                }
                .section-header h2 {
                    font-size: 32px;
                }
                .section-header p {
                    font-size: 16px;
                }
                .features,
                .resume-builder,
                .testimonials {
                    padding: 60px 5%;
                }
                .features-grid {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
                .feature-card {
                    padding: 24px;
                }
                .resume-features {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                .templates-title {
                    font-size: 28px;
                    margin: 50px 0 30px;
                }
                .resume-templates {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
                .cta {
                    padding: 60px 5%;
                }
                .cta h2 {
                    font-size: 32px;
                }
                .cta p {
                    font-size: 16px;
                }
                .testimonials-grid {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                }
                .footer-links {
                    justify-content: center;
                }
                .modal-content {
                    padding: 32px 24px;
                }
                .modal h2 {
                    font-size: 24px;
                }
            }
            
            @media (max-width: 480px) {
                .hero-content h1 {
                    font-size: 28px;
                }
                .hero-stats {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }
                .section-header h2,
                .cta h2 {
                    font-size: 28px;
                }
                .templates-title {
                    font-size: 24px;
                }
                .btn-large,
                .btn-white {
                    padding: 14px 32px;
                    font-size: 15px;
                }
            }