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

        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #fafafa;
            --bg-tertiary: #f5f5f4;
            --bg-card: #ffffff;
            --text-primary: #37352f;
            --text-secondary: #010101;
            --text-tertiary: #9b998f;
            --border-primary: #e9e9e7;
            --border-secondary: #d4d4d4;
            --accent-primary: #010101;
            --accent-hover: #1f73c7;
            --success: #0f7b0f;
            --error: #dc2626;
            --warning: #ca8a04;
            --shadow-subtle: 0 1px 3px rgba(15, 15, 15, 0.1);
            --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-secondary);
            line-height: 1.5;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: -0.01em;
        } 
        
        p, span, a, li, h4, h5, h6 {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
        }

        .header {
            background: var(--bg-primary);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-primary);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo::before {
            content: "⚡";
            margin-right: 12px;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            padding: 8px 0;
            letter-spacing: -0.01em;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-secondary);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background-color 0.2s ease;
            flex-direction: column;
            width: 30px;
            height: 30px;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .mobile-menu-toggle::before,
        .mobile-menu-toggle::after {
            content: '';
            width: 20px;
            height: 2px;
            background-color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle span {
            width: 20px;
            height: 2px;
            background-color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active::before {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span {
            opacity: 0;
        }

        .mobile-menu-toggle.active::after {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-section {
            text-align: center;
            padding: 80px 24px 64px;
            margin-bottom: 48px;
        }

        .hero-section h1 {
            font-size: 52px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-section p {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 32px;
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        .content-wrapper {
            padding: 0;
        }

        .section {
            margin-bottom: 32px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-subtle);
            transition: all 0.2s;
        }

        .section:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        .section h3 {
            font-size: 21px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.01em;
        }

        .method-selector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .method-option {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-lg);
            padding: 24px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: left;
            position: relative;
        }

        .method-option:hover {
            border-color: var(--border-secondary);
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        .method-option.active {
            border-color: var(--accent-primary);
            background: var(--bg-secondary);
            box-shadow: 0 0 0 1px var(--accent-primary);
        }

        .method-option .icon {
            font-size: 28px;
            margin-bottom: 16px;
            color: var(--accent-primary);
            line-height: 1;
        }

        .method-option h4 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .method-option p {
            font-size: 14px;
            color: var(--text-tertiary);
            line-height: 1.5;
            letter-spacing: -0.005em;
        }

        .upload-section {
            background: var(--bg-card);
            border: 2px dashed var(--border-primary);
            border-radius: var(--radius-lg);
            padding: 48px 32px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .upload-section:hover {
            border-color: var(--accent-primary);
            background: var(--bg-secondary);
            transform: translateY(-2px);
        }

        .upload-section .upload-icon {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--accent-primary);
        }

        .upload-section h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .upload-section p {
            color: var(--text-tertiary);
            font-size: 15px;
            line-height: 1.5;
            letter-spacing: -0.005em;
        }

        .optimization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .optimization-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all 0.2s;
            cursor: pointer;
            position: relative;
        }

        .optimization-card:hover {
            border-color: var(--border-secondary);
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        .optimization-card.active {
            border-color: var(--accent-primary);
            background: var(--bg-secondary);
            box-shadow: 0 0 0 1px var(--accent-primary);
        }

        .optimization-card .icon {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--accent-primary);
            line-height: 1;
        }

        .optimization-card h4 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .optimization-card p {
            font-size: 13px;
            color: var(--text-tertiary);
            line-height: 1.5;
            letter-spacing: -0.005em;
        }

        .btn-primary {
            background: var(--accent-primary);
            color: white;
            border: none;
            padding: 16px 32px!important;
            font-size: 16px!important;
            font-weight: 500;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
            max-width: 366px!important;
            margin: 32px auto;
            display: block;
            font-family: inherit;
            letter-spacing: -0.01em;
        }

        .btn-primary:hover:not(:disabled) {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-medium);
        }

        .btn-primary:active:not(:disabled) {
            transform: translateY(0);
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: var(--accent-primary);
            transform: none;
        }

        .textarea,
        .input {
            width: 100%;
            padding: 16px;
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-md);
            font-size: 15px;
            transition: all 0.2s;
            background: var(--bg-card);
            font-family: inherit;
            color: var(--text-secondary);
            letter-spacing: -0.01em;
        }

        .textarea:focus,
        .input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
        }

        .textarea {
            min-height: 160px;
            line-height: 1.6;
            resize: vertical;
        }

        .loading {
            display: none;
            text-align: center;
            padding: 48px;
        }

        .spinner {
            width: 28px;
            height: 28px;
            border: 2px solid var(--border-primary);
            border-top: 2px solid var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 16px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .results-section {
            margin-top: 32px;
            display: none;
        }

        .results-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .result-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-subtle);
            transition: all 0.2s;
            overflow: hidden;
        }

        .result-card:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        .result-card h3 {
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 24px 24px 0;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .cv-content {
            padding: 0 24px 24px;
            max-height: 400px;
            overflow-y: auto;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            letter-spacing: -0.005em;
        }

        .cv-content::-webkit-scrollbar {
            width: 6px;
        }

        .cv-content::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
            border-radius: 3px;
        }

        .cv-content::-webkit-scrollbar-thumb {
            background: var(--border-secondary);
            border-radius: 3px;
        }

        .cv-content::-webkit-scrollbar-thumb:hover {
            background: var(--text-tertiary);
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 32px;
        }

        .download-btn {
            background: var(--accent-primary);
              color: white;
              border: none;
              padding: 16px 32px;
              font-size: 16px;
              font-weight: 500;
              border-radius: var(--radius-md);
              cursor: pointer;
              transition: all 0.2s;
              font-family: inherit;
              letter-spacing: -0.01em;
        }

        .download-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-medium);
        }

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

        .file-info {
            margin-top: 20px;
            padding: 16px;
            background: var(--bg-tertiary);
            border-radius: var(--radius-md);
            color: var(--text-secondary);
            display: none;
            font-size: 14px;
            border: 1px solid var(--border-primary);
        }

        .extraction-results {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-lg);
            padding: 24px;
            margin-bottom: 32px;
            display: none;
            box-shadow: var(--shadow-subtle);
        }

        .extraction-method {
            background: var(--bg-secondary);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-md);
            padding: 16px;
            margin-bottom: 16px;
        }

        .status {
            font-weight: 500;
            margin-bottom: 8px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            letter-spacing: 0.01em;
            text-transform: uppercase;
        }

        .status.success {
            background: rgba(15, 123, 15, 0.1);
            color: var(--success);
        }

        .status.error {
            background: rgba(220, 38, 38, 0.1);
            color: var(--error);
        }

        .status.processing {
            background: rgba(202, 138, 4, 0.1);
            color: var(--warning);
        }

        .preview-text {
            background: var(--bg-secondary);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-md);
            padding: 16px;
            max-height: 120px;
            overflow-y: auto;
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-secondary);
        }

        .analysis-section {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-subtle);
        }

        .compatibility-score {
            text-align: center;
            margin: 32px 0;
        }

        .score-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(var(--accent-primary) 0deg, var(--accent-primary) 270deg, var(--border-primary) 270deg, var(--border-primary) 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            position: relative;
        }

        .score-circle::after {
            content: "";
            width: 96px;
            height: 96px;
            background: var(--bg-card);
            border-radius: 50%;
            position: absolute;
        }

        .score-text {
            position: relative;
            z-index: 1;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .keywords-analysis {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 32px;
        }

        .keyword-group h4 {
            margin-bottom: 12px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: -0.01em;
        }

        .keyword-tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            margin: 0 8px 8px 0;
            font-weight: 500;
            letter-spacing: -0.005em;
        }

        .keyword-missing {
            background: rgba(220, 38, 38, 0.1);
            color: var(--error);
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .keyword-added {
            background: rgba(15, 123, 15, 0.1);
            color: var(--success);
            border: 1px solid rgba(15, 123, 15, 0.2);
        }
        
        .skills-selector {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 20px 0;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-primary);
        }

        .skill-checkbox {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .skill-checkbox:hover {
            background: var(--bg-secondary);
            border-color: var(--accent-primary);
        }

        .skill-checkbox input[type="checkbox"] {
            margin-right: 8px;
            cursor: pointer;
        }

        .skill-checkbox input[type="checkbox"]:checked + .skill-label {
            color: var(--accent-primary);
            font-weight: 500;
        }

        .skill-label {
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .selected-count {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-bottom: 10px;
        }

        .apply-skills-btn {
            background: var(--accent-primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .apply-skills-btn:hover:not(:disabled) {
            background: var(--accent-hover);
        }

        .apply-skills-btn:disabled {
            background: var(--text-tertiary);
            cursor: not-allowed;
        }

        /* Estilos para LinkedIn extractor */
        .job-input-selector {
            margin-bottom: 20px;
        }

        .job-input-selector .method-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 0;
        }

        .job-input-selector .method-option {
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .job-input-selector .method-option.active {
            border-color: var(--accent-primary);
            background: var(--bg-secondary);
            box-shadow: 0 0 0 1px var(--accent-primary);
        }

        #linkedinUrlInput {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-primary);
        }

        #linkedinJobUrl {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            font-size: 13px;
        }

        #linkedinStatus {
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            min-height: 20px;
        }

        #extractLinkedInBtn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background: var(--accent-primary);
        }

        /* Animación para status loading */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .status-loading {
            animation: pulse 1.5s ease-in-out infinite;
        }

        .how-it-works p {
            font-size: 17px;
        }

        .logo-section {
            display: block;
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border-primary);
                box-shadow: var(--shadow-medium);
                flex-direction: column;
                padding: 20px 0;
                z-index: 1001;
                animation: slideDown 0.3s ease-out;
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                padding: 0 20px;
            }

            .nav-links a {
                padding: 15px 20px;
                font-size: 16px;
                border-radius: 0;
                display: block;
                text-align: center;
                border-bottom: 1px solid var(--border-primary);
                transition: all 0.2s ease;
            }

            .nav-links a:hover {
                background-color: var(--bg-secondary);
                color: var(--accent-primary);
                transform: translateX(5px);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-section h1 {
                font-size: 36px;
            }

            .job-input-selector .method-selector {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .job-input-selector .method-option {
                padding: 15px;
            }
            
            #linkedinUrlInput {
                padding: 15px;
            }

            .logo-section {
                display: none;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
        
        .reviews-section h2 {
            padding-top: 60px;
        }
        
        #optimizeBtn {
            margin-bottom: 100px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-secondary);
            line-height: 1.5;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }

        .header {
            background: var(--bg-primary);
            position: sticky;
            top: 0;
            z-index: 50;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-primary);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }

        .logo::before {
            content: "⚡";
            margin-right: 8px;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            padding: 8px 0;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--text-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-section {
            text-align: center;
            padding: 80px 0 64px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .billing-options {
            background: var(--bg-secondary);
            border-radius: 32px;
            padding: 4px;
            display: flex;
            border: 1px solid var(--border-primary);
        }

        .billing-option {
            background: transparent;
            border: none;
            padding: 8px 16px;
            border-radius: 28px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }

        .billing-option.active {
            background: var(--bg-primary);
            color: var(--text-primary);
            box-shadow: var(--shadow-card);
        }

        .discount-badge {
            background: var(--success);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .plan-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: var(--radius);
            padding: 32px 24px;
            position: relative;
            transition: all 0.2s;
            height: fit-content;
        }

        .plan-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .plan-card.popular {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 1px var(--accent-primary);
        }

        .plan-card.popular::before {
            content: "Most popular";
            position: absolute;
            top: -10px;
            left: 24px;
            background: var(--accent-primary);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-header {
            margin-bottom: 32px;
        }

        .plan-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .plan-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            margin-bottom: 8px;
        }

        .price-currency {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .price-amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .price-period {
            font-size: 14px;
            color: var(--text-secondary);
            margin-left: 4px;
        }

        .price-note {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-bottom: 24px;
        }

        .plan-button {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-primary);
            border-radius: 6px;
            background: var(--bg-primary);
            color: var(--text-primary);
            font-weight: 500;
            text-decoration: none;
            display: block;
            text-align: center;
            transition: all 0.2s;
            margin-bottom: 32px;
            font-size: 16px;
        }

        .plan-button:hover {
            background: var(--bg-secondary);
        }

        .plan-button.primary {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
        }

        .plan-button.primary:hover {
            background: var(--accent-hover);
        }

        .plan-features {
            list-style: none;
        }

        .plan-features li {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.4;
        }

        .plan-features li::before {
            content: "✓";
            color: var(--success);
            font-weight: 600;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .enterprise-section {
            background: var(--bg-secondary);
            border-radius: var(--radius);
            padding: 48px;
            text-align: center;
            margin-bottom: 80px;
            border: 1px solid var(--border-primary);
        }

        .enterprise-title {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .enterprise-description {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .enterprise-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }

        .enterprise-feature {
            text-align: center;
            padding: 24px 16px;
            background: var(--bg-primary);
            border-radius: var(--radius);
        }

        .enterprise-feature h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .enterprise-feature p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .enterprise-button {
            background: var(--text-primary);
            color: var(--bg-primary);
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }

        .enterprise-button:hover {
            background: var(--text-secondary);
        }

        .faq-section {
            margin-bottom: 80px;
        }

        .faq-title {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .faq-item {
            padding: 24px 0;
            border-bottom: 1px solid var(--border-primary);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .faq-answer {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .enterprise-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .blog-header {
            text-align: center;
            padding: 60px 0 40px;
            margin-bottom: 48px;
        }

        .blog-header h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .blog-header p {
            font-size: 21px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 32px;
            letter-spacing: -0.01em;
        }

        .blog-stats {
            font-size: 14px;
            color: var(--text-tertiary);
            font-weight: 500;
        }

        .articles-container {
            margin-bottom: 80px;
        }

        .featured-article {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-subtle);
            margin-bottom: 48px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .featured-article::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-primary);
        }

        .featured-article:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }

        .featured-badge {
            background: var(--accent-primary);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-block;
            margin-bottom: 16px;
        }

        .article-list {
            display: grid;
            gap: 24px;
        }

        .article-item {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-subtle);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .article-item:hover {
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
            border-color: var(--border-secondary);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-tertiary);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .article-date {
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .article-read-time {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .article-read-time::before {
            content: "•";
            color: var(--border-secondary);
        }

        .article-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.3;
            transition: color 0.2s ease;
        }

        .article-item:hover .article-title {
            color: var(--accent-primary);
        }

        .featured-article .article-title {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .article-excerpt {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .featured-article .article-excerpt {
            font-size: 18px;
            margin-bottom: 24px;
        }

        .article-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .tag {
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .article-item:hover .tag {
            background: var(--accent-primary);
            color: white;
        }

        .read-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s ease;
        }

        .read-more::after {
            content: "→";
            font-size: 12px;
            transition: transform 0.2s ease;
        }

        .article-item:hover .read-more {
            gap: 10px;
        }

        .article-item:hover .read-more::after {
            transform: translateX(2px);
        }

        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--border-primary) 50%, transparent 100%);
            margin: 48px 0;
        }

        .cta-section {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 48px;
            text-align: center;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-subtle);
            margin-bottom: 40px;
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: var(--accent-primary);
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: -0.01em;
        }

        .cta-button:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-medium);
        }

        @media (max-width: 768px) {
            .container {
                margin-top: 80px;
                padding: 0 20px;
            }

            .blog-header {
                padding: 40px 0 24px;
            }

            .blog-header h1 {
                font-size: 32px;
            }

            .featured-article, .article-item {
                padding: 24px;
            }

            .featured-article .article-title {
                font-size: 26px;
            }

            .article-title {
                font-size: 20px;
            }

            .cta-section {
                padding: 32px 24px;
            }
        }