/* ================================================
   CV OPTIMISER LANDING PAGE — cv-landing.css
   All styles scoped to this page only.
   DO NOT add these to style.css.
   ================================================ */

/* ------------------------------------------------
   SHARED UTILITIES
   ------------------------------------------------ */
.cvl-section { padding: 80px 2rem; }
.cvl-container { max-width: 1140px; margin: 0 auto; }
.cvl-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6C63FF;
    margin-bottom: 1rem;
}
.cvl-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #12153D;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.cvl-heading-white { color: #ffffff; }
.cvl-heading em { font-style: normal; color: #1EC86A; }
.cvl-subtext {
    font-size: 1.05rem;
    color: #4A4E7A;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.cvl-subtext-white { color: rgba(255,255,255,0.72); }
.cvl-center { text-align: center; }

.cvl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}
.cvl-btn-primary {
    background: #6C63FF !important;
    color: #ffffff;
}
.cvl-btn-primary:hover {
    background: #1EC86A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 200, 106, 0.28);
}
.cvl-btn-ghost {
    background: #12153D;
    color: #ffffff;
}
.cvl-btn-ghost:hover {
    background: #1EC86A;
    color: #ffffff;
    transform: translateY(-2px);
}
.cvl-btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* ------------------------------------------------
   SECTION 1 — HERO
   ------------------------------------------------ */
.cvl-hero {
    background: #141C43 !important;
    padding: 100px 2rem 80px;
    overflow: hidden;
    position: relative;
}
.cvl-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cvl-hero-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cvl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108,99,255,0.18);
    border: 1px solid rgba(108,99,255,0.35);
    color: #a09eff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.cvl-hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #6C63FF;
    border-radius: 50%;
}
.cvl-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.cvl-hero h1 em {
    font-style: normal;
    color: #1EC86A;
}
.cvl-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2rem;
}
.cvl-hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.cvl-hero-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.01em;
}

/* Hero image wrapper */
.cvl-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    background: transparent;
}
.hero-cv-image {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    transform: scale(1.08);
    transform-origin: center right;
}
.cvl-mock-ats-badge {
    position: absolute;
    top: -28px;
    right: 0px;
    background: #1EC86A;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(30,200,106,0.4);
    z-index: 4;
}

/* ------------------------------------------------
   SECTION 2 — THE PROBLEM
   ------------------------------------------------ */
.cvl-problem {
    background: #ffffff;
}
.cvl-problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cvl-problem-card {
    background: #F5F6FA;
    border-radius: 14px;
    padding: 32px 28px;
    transition: box-shadow 0.2s ease;
}
.cvl-problem-card:hover {
    box-shadow: 0 8px 28px rgba(18,21,61,0.09);
}
.cvl-problem-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
}
.cvl-problem-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #12153D;
    margin-bottom: 0.6rem;
}
.cvl-problem-card p {
    font-size: 0.92rem;
    color: #4A4E7A;
    line-height: 1.65;
}

/* ------------------------------------------------
   SECTION 3 — HOW IT WORKS
   ------------------------------------------------ */
.cvl-how {
    background: #F5F6FA;
}
.cvl-steps {
    display: grid;
    grid-template-columns: 1fr 32px 1fr 32px 1fr;
    gap: 0;
    align-items: start;
    margin-top: 48px;
}
.cvl-step {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(18,21,61,0.06);
}
.cvl-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #6C63FF;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
}
.cvl-step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #12153D;
    margin-bottom: 0.6rem;
}
.cvl-step p {
    font-size: 0.9rem;
    color: #4A4E7A;
    line-height: 1.65;
}
.cvl-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 54px;
    color: #C8CAD8;
}

/* ------------------------------------------------
   SECTION 4 — TWO MODES
   ------------------------------------------------ */
.cvl-modes {
    background: #12153D;
}
.cvl-modes .cvl-heading {
    color: #ffffff;
}
.cvl-modes .cvl-subtext {
    color: rgba(255,255,255,0.68);
}
.cvl-modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.cvl-mode-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
}
.cvl-mode-card--premium {
    border: 2px solid #6C63FF;
    box-shadow: 0 8px 48px rgba(108,99,255,0.25);
    position: relative;
}
.cvl-mode-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}
.cvl-mode-tag--free {
    background: #1EC86A;
    color: #ffffff;
}
.cvl-mode-tag--premium {
    background: #6C63FF;
    color: #ffffff;
}
.cvl-mode-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #12153D;
    margin-bottom: 0.5rem;
}
.cvl-mode-card > p {
    font-size: 1rem;
    color: #4A4E7A;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.cvl-mode-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.cvl-mode-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #12153D;
    padding: 0.6rem 0;
}
.cvl-feat-excluded {
    color: #8A8FAA;
}
.cvl-feat-excluded .cvl-feat-x {
    color: #8A8FAA;
    font-size: 1rem;
    margin-right: 0.5rem;
}
.cvl-feat-check {
    flex-shrink: 0;
}
.cvl-mode-card .cvl-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}


/* ------------------------------------------------
   SECTION 6 — CREDIBILITY
   ------------------------------------------------ */
.cvl-cred {
    background: linear-gradient(135deg, #0D1030 0%, #12153D 100%);
    padding: 80px 2rem;
}
.cvl-cred-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.cvl-cred-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.cvl-cred-text p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.cvl-cred-text p strong {
    color: rgba(255,255,255,0.9);
}
.cvl-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cvl-trust-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 22px 20px;
    transition: background 0.2s ease;
}
.cvl-trust-card:hover {
    background: rgba(255,255,255,0.1);
}
.cvl-trust-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}
.cvl-trust-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}
.cvl-trust-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}

/* ------------------------------------------------
   SECTION 7 — PRICING
   ------------------------------------------------ */
.cvl-pricing {
    background: #12153D !important;
    padding: 80px 2rem;
}
.cvl-pricing .cvl-heading {
    color: #ffffff !important;
}
.cvl-pricing .cvl-subtext {
    color: rgba(255,255,255,0.68) !important;
}
.cvl-pricing .cvl-section-label {
    color: #a09eff !important;
}
.cvl-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0;
    text-align: left;
}
.cvl-price-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.cvl-price-card--highlight {
    border: 2px solid #6C63FF;
    box-shadow: 0 8px 48px rgba(108,99,255,0.25);
    transition: all 0.2s ease;
}
.cvl-price-card--highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(108,99,255,0.28);
    border-color: #6C63FF;
}
.cvl-price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #6C63FF;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.cvl-price-tier {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4A4E7A;
    margin-bottom: 0.5rem;
}
.cvl-price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #12153D;
    line-height: 1;
    margin-bottom: 4px;
}
.cvl-price-period {
    font-size: 0.85rem;
    color: #4A4E7A;
    margin-bottom: 0.4rem;
}
.cvl-price-tagline {
    font-size: 0.85rem;
    color: #4A4E7A;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E4ED;
}
.cvl-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
}
.cvl-price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #12153D;
    padding: 0.6rem 0;
    border-bottom: none;
}
.cvl-feat-missing {
    color: #8A8FAA;
    text-decoration: none;
}
.cvl-feat-x {
    color: #8A8FAA;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.cvl-feat-icon { flex-shrink: 0; margin-top: 1px; }

/* ------------------------------------------------
   SECTION 8 — FINAL CTA
   ------------------------------------------------ */
.cvl-final-cta {
    background: #F5F6FA;
    padding: 80px 2rem;
    text-align: center;
    border-top: 1px solid #E2E4ED;
}
.cvl-final-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #12153D;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.cvl-final-cta h2 em {
    font-style: normal;
    color: #6C63FF;
}
.cvl-final-cta p {
    font-size: 1.05rem;
    color: #4A4E7A;
    margin-bottom: 2rem;
}
.cvl-final-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #8A8FAA;
}


/* ------------------------------------------------
   RESPONSIVE — TABLET (max 968px)
   ------------------------------------------------ */
@media (max-width: 968px) {
    .cvl-hero-grid { grid-template-columns: 1fr; }
    .cvl-hero-visual { display: none; }
    .cvl-hero { padding: 88px 2rem 60px; text-align: center; }
    .cvl-hero-cta-group { align-items: center; }
    .cvl-hero-sub { margin-left: auto; margin-right: auto; }
    .cvl-cred-grid { grid-template-columns: 1fr; gap: 40px; }
    .cvl-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cvl-step-arrow { display: none; }
    .cvl-modes-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   RESPONSIVE — MOBILE (max 768px)
   ------------------------------------------------ */
@media (max-width: 768px) {
    .cvl-section { padding: 56px 1.5rem; }
    .cvl-problem-cards { grid-template-columns: 1fr; }
    .cvl-trust-grid { grid-template-columns: 1fr; }
    .cvl-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .cvl-btn-large { padding: 16px 32px; font-size: 1rem; }
    .cvl-price-card { padding: 28px 24px; }
    .cvl-mode-card { padding: 28px 24px; }
    .cvl-final-cta { padding: 56px 1.5rem; }
}
