:root {
    --vmin-p: #2563EB;
    --vmin-p-dark: #1E40AF;
    --vmin-bg: #F9FAFB;
    --vmin-card: #ffffff;
    --vmin-text: #111827;
    --vmin-text-light: #4B5563;
    --vmin-border: #E5E7EB;
    --vmin-glass: rgba(255, 255, 255, 0.7);
    --vmin-radius: 20px;
}

.vmin-premium-app,
.vmin-premium-app * {
    box-sizing: border-box;
}

/* Hide ReCAPTCHA badge (attribution added to footer) */
.grecaptcha-badge {
    visibility: hidden !important;
}

.vmin-premium-app {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--vmin-text);
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    min-height: 600px;
    position: relative;
}

.vmin-lp-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
}

.vmin-lp-badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.vmin-lp-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.vmin-avatar-group {
    display: flex;
    align-items: center;
}

.vmin-avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.vmin-avatar-group img:first-child {
    margin-left: 0;
}

.vmin-rating-text {
    font-size: 13px;
    color: #64748b;
}

.vmin-rating-stars {
    color: #f59e0b;
}

/* Hero Mockup Styling */
.vmin-hero-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.vmin-hero-mockup-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transform: rotateY(-10deg) rotateX(5deg);
}

.vmin-ats-score-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Problem Section */
.vmin-section-title-lp {
    text-align: center;
    margin-bottom: 50px;
}

.vmin-section-title-lp h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.vmin-section-title-lp p {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.vmin-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.vmin-problem-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.vmin-problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--vmin-p);
}

.vmin-problem-icon {
    width: 48px;
    height: 48px;
    background: #fff1f2;
    color: #f43f5e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

/* Dark Tester Section */
.vmin-tester-section {
    background: #0f172a;
    border-radius: 32px;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.vmin-tester-content {
    flex: 1;
}

.vmin-tester-mockup {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vmin-tester-btn-white {
    background: #fff !important;
    color: #0f172a !important;
    padding: 18px 32px !important;
}

.vmin-tester-btn-white:hover {
    background: #f1f5f9 !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1) !important;
}

.vmin-tester-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.vmin-tester-link:hover {
    opacity: 0.8;
}

.vmin-tester-container-lp {
    padding: 0 40px;
    margin-bottom: 80px;
}

.vmin-tester-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Steps LP */
.vmin-steps-lp {
    text-align: center;
    margin-bottom: 80px;
}

.vmin-steps-grid-lp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.vmin-step-item-lp {
    position: relative;
    z-index: 1;
}

.vmin-step-number-lp {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Templates LP */
.vmin-templates-lp {
    text-align: center;
    margin-bottom: 80px;
}

.vmin-templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.vmin-template-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.vmin-template-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 1px solid #f1f5f9;
}

.vmin-template-info {
    padding: 20px;
}

/* Pricing LP */
.vmin-pricing-lp {
    background: #f8fafc;
    padding: 80px 40px;
    margin: 0 -40px;
    text-align: center;
}

.vmin-pricing-grid-lp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.vmin-pricing-card-lp {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.vmin-pricing-card-lp.featured {
    border: 2px solid #0f172a;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.vmin-pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.vmin-btn-lp-primary {
    width: 100%;
    background: var(--vmin-p);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 24px;
}

.vmin-btn-lp-primary:hover {
    transform: translateY(-2px);
    background: var(--vmin-p-dark);
}

.vmin-pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.vmin-pricing-features li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .vmin-lp-hero {
        flex-direction: column !important;
        padding: 40px 20px !important;
        text-align: center;
        gap: 30px !important;
    }

    .vmin-lp-hero h1 {
        font-size: 42px !important;
    }

    .vmin-hero-mockup-wrapper {
        transform: none !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .vmin-hero-mockup-card {
        transform: none !important;
        padding: 20px !important;
    }

    .vmin-problem-grid,
    .vmin-steps-grid-lp,
    .vmin-templates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {

    .vmin-problem-grid,
    .vmin-steps-grid-lp,
    .vmin-templates-grid,
    .vmin-pricing-grid-lp {
        grid-template-columns: 1fr !important;
    }

    .vmin-section-title-lp h2 {
        font-size: 32px !important;
    }

    .vmin-premium-app {
        margin: 10px;
        border-radius: 20px;
    }

    .vmin-tester-section {
        flex-direction: column;
        padding: 40px 20px !important;
        text-align: center;
    }

    .vmin-pricing-card-lp.featured {
        transform: none !important;
    }

    .vmin-steps-section-lp {
        padding: 60px 24px !important;
    }

    .vmin-steps-connector-lp {
        display: none !important;
    }
}

.vmin-steps-section-lp {
    padding: 100px 60px;
}

.vmin-steps-connector-lp {
    position: absolute;
    top: 120px;
    left: 15%;
    right: 15%;
    height: 2px;
    border-top: 2px dashed #e2e8f0;
    z-index: 0;
}

.vmin-faq-section-lp {
    padding: 100px 60px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vmin-faq-section-lp {
        padding: 60px 24px !important;
    }
}

.vmin-app-inner {
    padding: 40px;
}

.vmin-app-header {
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid var(--vmin-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vmin-brand {
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmin-logo-dot {
    width: 12px;
    height: 12px;
    background: var(--vmin-p);
    border-radius: 50%;
    display: inline-block;
}

/* FAQ Section */
.vmin-faq-container {
    margin: 60px auto 0;
    text-align: left;
    max-width: 800px;
}

.vmin-faq-item {
    background: #fff;
    border: 1px solid var(--vmin-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vmin-faq-question {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--vmin-text);
}

.vmin-faq-question:hover {
    background: #f8fafc;
}

.vmin-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--vmin-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.vmin-faq-item.active {
    border-color: var(--vmin-p);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05);
}

.vmin-faq-item.active .vmin-faq-answer {
    padding: 5px 25px 20px;
    max-height: 200px;
}

.vmin-faq-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
    opacity: 0.5;
}

.vmin-faq-item.active .vmin-faq-icon {
    transform: rotate(180deg);
}

/* Steps System */
.vmin-step-card {
    display: none;
    animation: vminFadeUp 0.5s ease-out;
}

.vmin-step-card.active {
    display: block;
}

@keyframes vminFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Common Elements */
.vmin-hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.vmin-hero-section h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.vmin-hero-section p {
    color: var(--vmin-text-light);
    font-size: 16px;
}

.vmin-btn-primary {
    background: var(--vmin-p);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.vmin-btn-primary:hover {
    background: var(--vmin-p-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.vmin-btn-secondary {
    background: #fff;
    color: var(--vmin-text);
    border: 1px solid var(--vmin-border);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vmin-btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

/* Upload Area */
.vmin-upload-area {
    border: 2px dashed var(--vmin-border);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vmin-upload-area:hover {
    border-color: var(--vmin-p);
    background: rgba(59, 130, 246, 0.02);
}

.vmin-upload-icon {
    color: var(--vmin-p);
    margin-bottom: 20px;
}

/* Dashboard */
.vmin-dash-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--vmin-border);
}

.vmin-score-circle {
    width: 100px;
    height: 100px;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease-out, stroke 0.3s ease;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.score-red {
    stroke: #ef4444;
}

.score-yellow {
    stroke: #f59e0b;
}

.score-green {
    stroke: #22c55e;
}

.text-red {
    color: #ef4444 !important;
}

.text-yellow {
    color: #f59e0b !important;
}

.text-green {
    color: #22c55e !important;
}

.bg-red {
    background: #fee2e2 !important;
    color: #b91c1c !important;
}

.bg-yellow {
    background: #fef3c7 !important;
    color: #b45309 !important;
}

.bg-green {
    background: #dcfce7 !important;
    color: #15803d !important;
}

.percentage {
    fill: #333;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: 800;
}

.vmin-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.vmin-insight-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--vmin-border);
}

.vmin-insight-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vmin-check-list {
    list-style: none;
    padding: 0;
}

.vmin-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.vmin-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 800;
}

.vmin-check-list.warning li::before {
    content: '✕';
    color: #ef4444;
}

/* Extraction & Tags */
.vmin-extraction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    text-align: left;
}

.vmin-ex-item {
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    transition: all 0.2s ease;
}

.vmin-ex-item:hover {
    border-color: var(--vmin-p);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vmin-ex-item strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vmin-text-light);
    margin-bottom: 4px;
}

.vmin-ex-item span,
.vmin-ex-item p {
    color: var(--vmin-text);
    font-weight: 600;
    margin: 0;
}

.vmin-ex-item p {
    font-weight: 400;
    line-height: 1.5;
    white-space: pre-line;
}

.vmin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
}

.vmin-tags span {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
}

.vmin-tags.missing span {
    background: #fee2e2;
    color: #ef4444;
}

/* CV Preview */
.vmin-cv-preview-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--vmin-border);
    margin-top: 20px;
}

.vmin-cv-preview-body {
    padding: 40px;
}

.vmin-cv-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vmin-cv-header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.vmin-cv-header h1 {
    font-size: 28px;
    margin: 0;
    color: #000;
}

.vmin-section-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin: 25px 0 10px;
    display: block;
}

/* Toggle Buttons Styling */
.vmin-toggle-container {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    width: 280px;
    border: 1px solid #e2e8f0;
}

.toggle-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.toggle-btn.active {
    background: #fff;
    color: var(--vmin-p);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.toggle-btn-badge {
    background: #fff7ed;
    color: #f97316;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 2px;
}

/* Locked Content Styles */
.vmin-locked-content-wrap {
    position: relative;
    transition: all 0.5s ease;
}

.vmin-blur-effect {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.vmin-locked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 320px;
    max-width: 90%;
}

.vmin-lock-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    text-align: center;
    animation: vmin-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vmin-lock-icon {
    font-size: 28px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffef3;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #fef3c7;
}

.vmin-lock-card strong {
    display: block;
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 8px;
}

.vmin-lock-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Premium Plan Cards */
.vmin-plan-card-premium {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.vmin-plan-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.vmin-plan-card-premium.featured {
    background: #fff;
    border: 2.5px solid #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    z-index: 2;
}

.vmin-plan-card-premium.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.vmin-plan-tag {
    position: absolute;
    top: -12px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.vmin-plan-tag.featured {
    background: #3b82f6;
    color: #fff;
    border: none;
}

.vmin-plan-icon {
    font-size: 44px;
    margin-bottom: 20px;
}

.vmin-plan-price {
    margin-bottom: 20px;
}

.vmin-plan-price .old-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
}

.vmin-plan-price .curr-price {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
}

.vmin-plan-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
    width: 100%;
}

.vmin-plan-features li {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vmin-plan-features li .dashicons {
    color: #10b981;
    font-size: 18px;
}

.vmin-plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
}

.vmin-plan-card-premium.featured .vmin-plan-btn {
    background: #3b82f6;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.vmin-plan-card-premium.featured .vmin-plan-btn:hover {
    background: #2563eb;
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.3);
}

/* Trust Section */
.vmin-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.vmin-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.vmin-trust-item .dashicons {
    font-size: 18px;
    color: #94a3b8;
}

@keyframes vmin-pop-in {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Gate Screen */
.vmin-gate-screen {
    display: none;
    padding: 0;
    background: transparent;
}

.vmin-gate-screen.active {
    display: block;
}

.vmin-gate-hero {
    flex: 1;
}

.vmin-gate-screen h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.vmin-gate-screen p {
    font-size: 18px;
    color: var(--vmin-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.vmin-gate-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.vmin-gf-item {
    display: flex;
    gap: 15px;
    text-align: left;
}

.vmin-gf-icon {
    font-size: 24px;
}

.vmin-gf-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.vmin-gf-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: var(--vmin-text-light);
}

.vmin-gate-preview-img {
    flex: 1;
    background: #f1f5f9;
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vmin-preview-mockup {
    width: 70%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mock-line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Modals & Forms */
.vmin-glass-modal {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmin-modal-container {
    background: #fff;
    border-radius: 28px;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.vmin-input,
.vmin-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--vmin-border);
    font-size: 14px;
    transition: border-color 0.3s;
}

.vmin-input:focus,
.vmin-textarea:focus {
    outline: none;
    border-color: var(--vmin-p);
}

.vmin-textarea {
    height: 180px;
    resize: none;
}

/* Pricing */
.vmin-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.vmin-plan-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid var(--vmin-border);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.vmin-plan-card.featured {
    border-color: var(--vmin-p);
    background: rgba(59, 130, 246, 0.02);
}

.vmin-price-row {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-orig {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
}

.price-curr {
    font-size: 32px;
    font-weight: 900;
    color: var(--vmin-text);
}

.price-discount-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-top: 5px;
}

.vmin-plan-badge {
    background: #f59e0b;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vmin-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 12px;
    color: var(--vmin-text-light);
}

/* Utils & Toast */
.vmin-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vmin-toast.active {
    transform: translateX(0);
}

.vmin-toast.success {
    border-left: 5px solid #10b981;
}

.vmin-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top-color: var(--vmin-p);
    border-radius: 50%;
    animation: vminSpin 0.8s linear infinite;
}

@keyframes vminSpin {
    to {
        transform: rotate(360deg);
    }
}

[contenteditable="true"] {
    outline: none;
    transition: all 0.2s ease;
}

.vmin-editable-active[contenteditable="true"] {
    background: #fffbeb !important;
    border: 1px dashed #f59e0b !important;
    padding: 5px 10px !important;
    border-radius: 8px !important;
    cursor: text;
}

.vmin-editable-active[contenteditable="true"]:focus {
    background: #fff !important;
    box-shadow: 0 0 0 3px #f59e0b !important;
    border-style: solid !important;
}

/* MOBILE OPTIMIZATION EXAMPLAR */
@media (max-width: 768px) {
    .vmin-premium-app {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .vmin-app-inner {
        padding: 20px 16px;
    }

    .vmin-app-header {
        padding: 15px 16px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        border-radius: 0;
    }

    .vmin-gate-screen.active {
        display: block;
    }

    .vmin-gate-screen h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .vmin-gate-preview-img {
        display: none;
    }

    .vmin-gf-item {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .vmin-gf-item p {
        text-align: center;
    }

    .vmin-hero-section h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .vmin-hero-section p {
        font-size: 15px;
    }

    .vmin-btn-primary,
    .vmin-btn-secondary {
        width: 100%;
        border-radius: 16px;
        padding: 16px;
        justify-content: center;
    }

    .vmin-dash-header {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }

    .vmin-dash-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vmin-extraction-grid {
        grid-template-columns: 1fr;
    }

    /* CV Preview Full Width Strategy */
    #cv-preview-content {
        margin-left: -16px;
        margin-right: -16px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .vmin-cv-preview-body {
        padding: 25px 16px !important;
    }

    .vmin-cv-grid-two-col {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vmin-preview-ctrl {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        border-radius: 0;
        margin-left: -16px;
        margin-right: -16px;
        border-left: none;
        border-right: none;
    }

    .vmin-preview-ctrl>div {
        width: 100% !important;
        min-width: 0 !important;
    }

    .vmin-cv-preview-body h1 {
        font-size: 26px !important;
    }

    .vmin-contact-editable-row {
        flex-direction: column;
        gap: 10px !important;
    }

    .vmin-plans-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vmin-modal-container {
        padding: 30px 20px;
        width: 95%;
        margin: 10px;
    }

    .vmin-input,
    .vmin-textarea {
        font-size: 16px;
    }

    /* LANDING PAGE RESPONSIVE FIXES */
    .vmin-lp-hero {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .vmin-lp-hero h1 {
        font-size: 32px !important;
        letter-spacing: -1px !important;
    }

    .vmin-lp-hero p {
        font-size: 16px !important;
        margin: 0 auto 30px !important;
    }

    .vmin-lp-hero>div {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        text-align: center !important;
    }

    .vmin-lp-hero div[style*="text-align: left"] {
        text-align: center !important;
    }

    .vmin-lp-social-proof {
        justify-content: center !important;
    }

    .vmin-hero-mockup-card {
        transform: none !important;
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .vmin-problem-grid,
    .vmin-steps-grid-lp,
    .vmin-templates-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .vmin-tester-section {
        padding: 40px 24px !important;
        gap: 40px !important;
        border-radius: 24px !important;
    }

    .vmin-tester-container-lp {
        padding: 0 10px !important;
    }

    .vmin-tester-content h2 {
        font-size: 32px !important;
        margin-bottom: 16px !important;
    }

    .vmin-tester-content p {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }

    .vmin-tester-btns {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .vmin-tester-btn-white {
        width: 100% !important;
        padding: 18px !important;
    }

    .vmin-hero-cta-wrapper {
        flex-direction: column !important;
        width: 100% !important;
    }

    .vmin-hero-cta-wrapper .vmin-btn-primary {
        width: 100% !important;
        padding: 18px 20px !important;
        font-size: 18px !important;
    }

    .vmin-tester-content,
    .vmin-tester-mockup {
        flex: 1 1 100% !important;
    }

    .vmin-section-title-lp h2 {
        font-size: 28px !important;
    }

    .vmin-pricing-lp {
        padding: 40px 20px !important;
        margin: 0 -20px !important;
    }

    .vmin-pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .vmin-selection-grid {
        grid-template-columns: 1fr !important;
    }

    .vmin-auth-modal .vmin-modal-container {
        width: 90% !important;
        padding: 25px !important;
    }
}

#global-back-btn,
#global-new-btn {
    display: none;
}

/* Loading Screen Premium Styles */
.vmin-loading-container {
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.vmin-ai-pulse {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--vmin-p);
    opacity: 0.15;
    animation: vmin-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.pulse-content {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--vmin-p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    z-index: 2;
}

.pulse-content .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

@keyframes vmin-pulse {
    0% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.5); opacity: 0.05; }
    100% { transform: scale(1); opacity: 0.15; }
}

.vmin-loading-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--vmin-text);
}

.vmin-loading-subtitle {
    font-size: 16px;
    color: var(--vmin-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.vmin-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-bottom: 40px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.loading-step.active {
    color: var(--vmin-text);
    font-weight: 600;
    opacity: 1;
}

.loading-step.completed {
    color: #10b981;
    opacity: 0.8;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.loading-step.active .step-dot {
    background: var(--vmin-p);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.loading-step.completed .step-dot {
    background: #10b981;
}

.vmin-loading-progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--vmin-p), #60a5fa);
    transition: width 0.5s ease;
}
