
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Anuphan', sans-serif;
            background-color: #ffffff;
            color: #111827;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            
        }
        .hero-section {
            padding: 80px 24px;
            text-align: center;
            background-color: #ffffff;
        }
        .nav-section {
            text-align: center;
            background-color: #ffffff;
            padding-left: 5%;
            padding-right: 5%;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .btn-primary {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 1.125rem;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .stats-section {
            padding: 64px 24px;
            background-color: #f9fafb;
        }

        .custom-section {
            padding: 64px 24px;
            background-color: #1a73e8;
        }


        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 8px;
        }
        .custom-header {
            font-size: 1.5rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .pricing-section {
            padding: 40px 24px;
            background-color: #ffffff;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            text-align: center;
            color: #111827;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            text-align: center;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 64px;
        }

        .pricing-table-wrapper {
            overflow-x: auto;
            margin-bottom: 48px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .pricing-table th,
        .pricing-table td {
            padding: 24px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-table th {
            font-weight: 500;
            font-size: 1.125rem;
            color: #111827;
        }

        .pricing-table th:first-child,
        .pricing-table td:first-child {
            text-align: left;
            background-color: #f9fafb;
            font-weight: 400;
            color: #6b7280;
        }

        .pricing-table .popular-column {
            background-color: #eff6ff;
        }

        .price-large {
            font-size: 2rem;
            font-weight: 300;
            color: #111827;
        }

        .price-detail {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            color: #2563eb;
            display: inline-block;
        }

        .feature-unlimited {
            color: #2563eb;
            font-weight: 500;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .pricing-card {
            background-color: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            position: relative;
        }

        .pricing-card.popular {
            border-color: #3b82f6;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background-color: #3b82f6;
            color: #ffffff;
            padding: 4px 16px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .card-period {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .card-price {
            font-size: 2.5rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 8px;
        }

        .card-features {
            list-style: none;
            margin: 24px 0;
        }

        .card-features li {
            padding: 8px 0;
            color: #4b5563;
            display: flex;
            align-items: flex-start;
        }

        .card-features li::before {
            content: "✓";
            color: #2563eb;
            font-weight: bold;
            margin-right: 12px;
        }

        .addon-section {
            padding: 80px 24px;
            background-color: #f9fafb;
        }

        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .addon-card {
            background-color: #ffffff;
            border-radius: 24px;
            padding: 32px;
            border: 1px solid #e5e7eb;
            transition: box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .addon-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .addon-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .addon-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }

        .addon-description {
            color: #6b7280;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .addon-link {
            color: #2563eb;
            font-weight: 500;
            text-decoration: none;
        }

        /***********************************************/
        .icon-badge {
            width: 80px;
            height: 80px;
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 32px;
        }

        .icon-badge--sportlight{

            background-color: #BDE3C3;
            
        }
        .icon-badge--banner{

            background-color: #77BEF0;
            
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .addon-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #f3f4f6;
            padding: 10px 16px;
            border-radius: 9999px;
            margin-bottom: 32px;
        }

        .addon-badge-text {
            font-size: 0.875rem;
            color: #374151;
            font-weight: 400;
        }

        .btn-custom {
            display: inline-block;
            background-color: #ffffff;
            color: #2563eb;
            padding: 16px 40px;
            border-radius: 24px;
            text-decoration: none;
            font-size: 1 rem;
            transition: background-color 0.3s;
        }


        .btn-primary {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 1.125rem;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .section {
            padding: 80px 24px;
        }

        .section-gray {
            background-color: #f9fafb;
        }

        .section-border {
            background-color: #f9fafb;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            padding: 32px 24px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            text-align: center;
            color: #111827;
            margin-bottom: 48px;
        }

        .text-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .info-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .info-icon {
            width: 24px;
            height: 24px;
            color: #6b7280;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .info-text {
            color: #1f2937;
            line-height: 1.7;
            font-size: 1.125rem;
        }

        .info-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }

        .info-link:hover {
            text-decoration: underline;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background-color: #f9fafb;
            border: 1px solid #f3f4f6;
            border-radius: 16px;
            padding: 32px;
            transition: box-shadow 0.3s;
        }

        .benefit-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background-color: #dbeafe;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 12px;
        }

        .benefit-description {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .preview-box-premium {
            background-color: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            padding: 32px;
            max-width: 1000px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .preview-label {
            text-align: center;
            color: #6b7280;
            margin-bottom: 48px;
            font-size: 1.125rem;
        }

        .job-card {
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .job-card-premium {
            border: 4px solid #fbbf24;
            background: linear-gradient(to bottom, rgba(254, 243, 199, 0.3), transparent);
        }

        .job-card-regular {
            border: 1px solid #e5e7eb;
            opacity: 0.6;
        }

        .job-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .job-logo {
            width: 80px;
            height: 80px;
            background-color: #e5e7eb;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #9ca3af;
            font-size: 0.75rem;
        }

        .job-content {
            flex: 1;
        }

        .premium-badges {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .premium-icon {
            width: 20px;
            height: 20px;
            color: #f59e0b;
        }

        .premium-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: #92400e;
            background-color: #fef3c7;
            padding: 4px 12px;
            border-radius: 9999px;
        }

        .job-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .job-details {
            color: #6b7280;
            margin-bottom: 12px;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .job-tag {
            background-color: #f3f4f6;
            padding: 6px 12px;
            border-radius: 9999px;
            font-size: 0.875rem;
            color: #374151;
        }

        .preview-note {
            text-align: center;
            color: #6b7280;
            margin-top: 24px;
        }

        .requirement-box {
            max-width: 600px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .requirement-title {
            font-size: 2rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 16px;
        }

        .requirement-text {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            position: relative;
            transition: box-shadow 0.3s;
        }

        .pricing-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .pricing-card.popular {
            border-color: #3b82f6;
            box-shadow: 0 10px 25px rgba(59,130,246,0.15);
            ring: 2px solid #bfdbfe;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #2563eb;
            color: #ffffff;
            padding: 6px 20px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(37,99,235,0.3);
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
            text-align: center;
        }

        .pricing-subtitle {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 24px;
            text-align: center;
            min-height: 40px;
        }

        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 300;
            color: #111827;
            text-align: center;
            margin-bottom: 8px;
        }

        .pricing-vat {
            font-size: 0.875rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 32px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .feature-list li {
            padding: 10px 0;
            color: #374151;
            display: flex;
            align-items: flex-start;
            font-size: 0.875rem;
        }

        .feature-list li::before {
            content: "✓";
            color: #2563eb;
            font-weight: bold;
            margin-right: 12px;
        }

        .requirement-notice {
            padding-top: 16px;
            margin-bottom: 32px;
            border-top: 1px solid #e5e7eb;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .requirement-item::before {
            content: "✓";
            color: #059669;
            margin-right: 8px;
        }

        .cta-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 24px;
        }

        .cta-text {
            font-size: 1.25rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /************************************************/


        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #dcfce7;
            padding: 8px 16px;
            border-radius: 9999px;
            margin-bottom: 32px;
        }

        .badge-text {
            font-size: 0.875rem;
            color: #166534;
            font-weight: 500;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .btn-primary {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 1.125rem;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .section {
            padding: 80px 24px;
        }

        .section-gray {
            background-color: #f9fafb;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            text-align: center;
            color: #111827;
            margin-bottom: 48px;
        }

        .text-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: #ffffff;
            border-radius: 24px;
            padding: 32px;
            transition: box-shadow 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background-color: #dcfce7;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 16px;
        }

        .feature-description {
            color: #6b7280;
            line-height: 1.6;
        }

        .preview-box {
            position: relative;
            background-color: #111827;
            border-radius: 24px;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .preview-content {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px;
            color: #ffffff;
            text-align: center;
        }

        .preview-inner {
            max-width: 600px;
        }

        .preview-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 24px;
        }

        .preview-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .preview-button {
            display: inline-block;
            background-color: #ffffff;
            color: #111827;
            padding: 16px 32px;
            border-radius: 9999px;
            font-size: 1.125rem;
            font-weight: 500;
        }

        .close-button {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .preview-note {
            text-align: center;
            color: #6b7280;
            margin-top: 32px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: 32px;
            position: relative;
            transition: box-shadow 0.3s;
        }

        .pricing-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .pricing-card.popular {
            border-color: #2563eb;
            box-shadow: 0 10px 25px rgba(37,99,235,0.2);
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #2563eb;
            color: #ffffff;
            padding: 6px 20px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .pricing-impressions {
            font-size: 2rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 8px;
            text-align: center;
        }

        .pricing-period {
            color: #6b7280;
            margin-bottom: 16px;
            text-align: center;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 8px;
            text-align: center;
        }

        .pricing-vat {
            font-size: 0.875rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 32px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .feature-list li {
            padding: 12px 0;
            color: #374151;
            display: flex;
            align-items: flex-start;
        }

        .feature-list li::before {
            content: "✓";
            color: #2563eb;
            font-weight: bold;
            margin-right: 12px;
        }

        .specs-table {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto 32px;
        }

        .specs-row {
            display: flex;
            justify-content: space-between;
            padding: 24px 32px;
            border-bottom: 1px solid #e5e7eb;
        }

        .specs-row:last-child {
            border-bottom: none;
        }

        .specs-label {
            color: #6b7280;
            font-weight: 500;
        }

        .specs-value {
            color: #111827;
            text-align: right;
        }

        .note-box {
            background-color: #dbeafe;
            border-radius: 16px;
            padding: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .note-text {
            color: #374151;
            text-align: center;
            line-height: 1.6;
        }

        .cta-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 24px;
        }

        .cta-text {
            font-size: 1.25rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-outline {
            display: inline-block;
            background-color: transparent;
            color: #111827;
            border: 1px solid #d1d5db;
            padding: 16px 40px;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 1.125rem;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            border-color: #9ca3af;
        }

        /*******************************/
               .text-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.25rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .positions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .position-card {
            background-color: #f9fafb;
            border-radius: 24px;
            padding: 32px;
            transition: box-shadow 0.3s;
        }

        .position-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .position-icon {
            width: 64px;
            height: 64px;
            background-color: #f3e8ff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
        }

        .position-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 12px;
        }

        .position-description {
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .position-specs {
            border-top: 1px solid #e5e7eb;
            padding-top: 16px;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .spec-label {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .spec-value {
            color: #111827;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .spec-price {
            color: #2563eb;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .mockup-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .mockup-card {
            background-color: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            padding: 24px;
            overflow: hidden;
        }

        .mockup-label {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .mockup-banner {
            border-radius: 16px;
            padding: 48px;
            text-align: center;
            color: #ffffff;
        }

        .mockup-homepage {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
        }

        .mockup-category {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
        }

        .mockup-job {
            background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
            display: inline-block;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: 32px;
            position: relative;
            transition: box-shadow 0.3s;
        }

        .pricing-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .pricing-card.popular {
            border-color: #2563eb;
            box-shadow: 0 10px 25px rgba(37,99,235,0.2);
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #2563eb;
            color: #ffffff;
            padding: 6px 20px;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .pricing-duration {
            font-size: 1.5rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 8px;
        }

        .pricing-positions {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 8px;
        }

        .pricing-discount {
            font-size: 0.875rem;
            color: #059669;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .pricing-vat {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .feature-list li {
            padding: 12px 0;
            color: #374151;
            display: flex;
            align-items: flex-start;
        }

        .feature-list li::before {
            content: "✓";
            color: #2563eb;
            font-weight: bold;
            margin-right: 12px;
        }

        .specs-table {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto 32px;
        }

        .specs-row {
            display: flex;
            justify-content: space-between;
            padding: 24px 32px;
            border-bottom: 1px solid #e5e7eb;
        }

        .specs-row:last-child {
            border-bottom: none;
        }

        .specs-label {
            color: #6b7280;
            font-weight: 500;
        }

        .specs-value {
            color: #111827;
            text-align: right;
        }

        .note-box {
            background-color: #dbeafe;
            border-radius: 16px;
            padding: 32px;
            max-width: 800px;
            margin: 0 auto;
        }

        .note-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 16px;
        }

        .note-list {
            list-style: none;
            color: #374151;
        }

        .note-list li {
            padding: 8px 0;
        }

        .cta-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 300;
            color: #111827;
            margin-bottom: 24px;
        }

        .cta-text {
            font-size: 1.25rem;
            color: #6b7280;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-outline {
            display: inline-block;
            background-color: transparent;
            color: #111827;
            border: 1px solid #d1d5db;
            padding: 16px 40px;
            border-radius: 9999px;
            text-decoration: none;
            font-size: 1.125rem;
            transition: all 0.3s;
        }

        /**************************************/



        @media (max-width: 1199px) {
            .pricing-table-wrapper {
                display: none;
            }
            .nav-section {
                padding-left: 5%;
                padding-right: 5%;
            }
        }

        @media (min-width: 1200px) {
            .pricing-cards {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            /*******************************/
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .benefits-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .job-header {
                flex-direction: column;
            }

            /*************************************/
             .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .preview-title {
                font-size: 2rem;
            }

            .preview-subtitle {
                font-size: 1.125rem;
            }

            .features-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
  