/* ── Breadcrumb (standalone) ── */
.cp-breadcrumb {
    display: flex; flex-direction: row;
    align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(0,0,0,0.004);
    border: 1px solid rgba(201,205,228,0.4);
    border-radius: 24px;
    width: fit-content;
}
.cp-breadcrumb__part {
    display: flex; align-items: center; gap: 6px;
}
.cp-breadcrumb__part a,
.cp-breadcrumb__part span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 12px;
    color: #3D4470; text-decoration: none;
}
.cp-breadcrumb__part a:hover { color: #7661B4; }
.cp-breadcrumb__part img { opacity: 0.7; flex-shrink: 0; }
.cp-breadcrumb__part--active span { color: #0D23AC; font-weight: 600; }

/* =============================================
   CARTANTS — cv-review.css
   ============================================= */

.cvr-page { width: 100%; }

/* ════ SECTION 1 — HERO + UPLOAD ════════════════
   Figma: padding 64px 100px, gap 56px
   bg: Gradd2 50% opacity pastel gradient
   ═══════════════════════════════════════════ */
.cvr-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 140px 100px 64px;
    gap: 48px;
    width: 100%;
    min-height: 700px;
    box-sizing: border-box;
    background: linear-gradient(107.49deg,
        rgba(174,215,235,0.5)  7.25%,
        rgba(197,152,227,0.5) 51.3%,
        rgba(146,173,230,0.5) 73.32%,
        rgba(136,141,232,0.5) 95.34%
    );
}

/* Left */
.cvr-hero__left {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 16px;
    flex: 1; max-width: 560px;
}
/* Figma: 61px → 40px */
.cvr-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 40px;
    line-height: 50px; color: #2D335D; margin: 0;
}
/* Figma: 25px → 15px */
.cvr-hero__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 15px;
    line-height: 24px; color: #2D335D; margin: 0;
    max-width: 480px;
}

/* Upload zone — Figma: dashed #EEEFF6 radius 32 */
.cvr-hero__upload-wrap { flex: 1; max-width: 560px; }
.cvr-upload-zone {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; min-height: 480px;
    border: 3px dashed #EEEFF6;
    border-radius: 24px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    position: relative;
}
.cvr-upload-zone.is-dragging {
    border-color: #7661B4;
    background: rgba(118,97,180,0.06);
}
.cvr-upload-zone__inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; padding: 32px;
    text-align: center;
}
/* Plus icon — Figma: 80x80 gradient radius 96 */
.cvr-upload-zone__plus {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(13,35,172,0.2);
}
.cvr-upload-zone__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 16px;
    line-height: 24px; color: #2D335D; margin: 0;
}
.cvr-upload-zone__hint {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 13px;
    color: #6B7280; margin: 0;
}
.cvr-browse-btn {
    padding: 10px 24px; border-radius: 20px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px; color: #fff;
    transition: opacity 0.15s;
}
.cvr-browse-btn:hover { opacity: 0.88; }
.cvr-upload-zone__privacy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: #6B7280; margin: 0;
}

/* File ready state */
.cvr-file-ready {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px; padding: 32px; text-align: center;
}
.cvr-file-ready__icon { opacity: 0.8; }
.cvr-file-ready__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 14px; color: #2D335D; margin: 0;
}
.cvr-file-ready__size {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; color: #6B7280; margin: 0;
}
.cvr-file-ready__remove {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 16px;
    background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
    font-family: 'Montserrat', sans-serif; font-size: 12px; color: #EF4444;
    cursor: pointer; transition: background 0.15s;
}
.cvr-file-ready__remove:hover { background: rgba(239,68,68,0.15); }

/* ════ SECTION 2 — CV DETAILS ═══════════════════ */
.cvr-details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 64px 100px;
    gap: 48px;
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

.cvr-details__left {
    display: flex; flex-direction: column;
    gap: 24px; flex: 1; max-width: 580px;
}
/* Figma: 49px → 26px */
.cvr-details__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #000000; margin: 0;
}

/* Review type selector */
.cvr-review-types {
    display: flex; flex-direction: row;
    align-items: center; gap: 16px;
    flex-wrap: wrap;
}
.cvr-review-type {
    display: flex; flex-direction: row;
    align-items: center; gap: 10px;
    padding: 20px 24px;
    background: rgba(243,244,254,0.31);
    border: 1.5px solid #EEEFF6;
    border-radius: 24px;
    cursor: pointer; flex: 1;
    transition: border-color 0.15s, background 0.15s;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 500; color: #3A4278;
    min-width: 140px;
}
.cvr-review-type.is-active {
    border-color: #7661B4;
    background: rgba(118,97,180,0.06);
    color: #2D335D;
}
.cvr-radio {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid #C9CDE4;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: border-color 0.15s;
}
.cvr-review-type.is-active .cvr-radio {
    border-color: #7661B4;
}
.cvr-radio__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #7661B4; opacity: 0; transition: opacity 0.15s;
}
.cvr-review-type.is-active .cvr-radio__dot { opacity: 1; }

/* Job-specific fields */
.cvr-specific-fields {
    display: flex; flex-direction: column; gap: 14px;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

.cvr-specific-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px; color: #000; margin: 0;
}
.cvr-field { display: flex; flex-direction: column; gap: 6px; }
.cvr-field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 13px; color: #000;
}
.cvr-input {
    width: 100%; height: 44px; padding: 10px 14px;
    background: #F9F9FC; border: 1px solid #DCDCE2;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif; font-size: 13px; color: #222747;
    outline: none; box-sizing: border-box; transition: border-color 0.15s;
}
.cvr-input:focus { border-color: #7661B4; background: #fff; }
.cvr-input::placeholder { color: #858588; }
.cvr-select {
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23858588' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px; cursor: pointer; color: #858588;
}

/* Notices */
.cvr-auth-notice, .cvr-used-notice {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 12px 16px; border-radius: 12px;
    font-family: 'Montserrat', sans-serif; font-size: 12px;
}
.cvr-auth-notice {
    background: rgba(118,97,180,0.06); border: 1px solid rgba(118,97,180,0.2); color: #3A4278;
}
.cvr-used-notice {
    background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); color: #92400E;
}
.cvr-auth-notice a, .cvr-used-notice a { color: #7661B4; font-weight: 600; }

/* Message */
.cvr-msg {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 12px;
    font-family: 'Montserrat', sans-serif; font-size: 12px;
}
.cvr-msg--error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #B91C1C; }
.cvr-msg--success { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); color: #15803D; }

/* Start AI Review button */
.cvr-start-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 260px; height: 48px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border: none; border-radius: 24px; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; color: #fff;
    transition: opacity 0.15s, transform 0.15s;
}
.cvr-start-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.cvr-start-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Right: CV preview */
.cvr-details__right { flex: 1; max-width: 580px; }
.cvr-cv-preview {
    width: 100%; min-height: 500px; border-radius: 20px;
    background: #F3F4FE; border: 2px dashed #EEEFF6;
    display: flex; align-items: center; justify-content: center;
}
.cvr-cv-preview__placeholder {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 32px; text-align: center;
    font-family: 'Montserrat', sans-serif; font-size: 13px; color: #9CA3AF;
}

/* ════ LOADING ═══════════════════════════════════ */
.cvr-results { padding: 64px 100px; background: #F3F4FE; box-sizing: border-box; }
.cvr-loading {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px; padding: 80px 0; text-align: center;
}
.cvr-loading__spinner {
    width: 52px; height: 52px; border-radius: 50%;
    border: 3px solid rgba(118,97,180,0.2);
    border-top-color: #7661B4;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cvr-loading__text {
    font-family: 'Montserrat', sans-serif; font-weight: 500;
    font-size: 15px; color: #3A4278; margin: 0;
    transition: opacity 0.3s;
}
.cvr-error-box {
    padding: 20px 24px; border-radius: 16px;
    background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
    font-family: 'Montserrat', sans-serif; font-size: 14px; color: #B91C1C;
    text-align: center; max-width: 600px; margin: 0 auto;
}

/* ── Responsive ── */
@media(max-width:1280px){ .cvr-hero,.cvr-details,.cvr-results { padding-left:60px; padding-right:60px; } }
@media(max-width:1024px){ .cvr-hero,.cvr-details,.cvr-results { padding-left:40px; padding-right:40px; } }
@media(max-width:768px){
    .cvr-hero,.cvr-details { flex-direction:column; padding:100px 24px 48px; }
    .cvr-hero { min-height:auto; }
    .cvr-hero__left,.cvr-hero__upload-wrap,.cvr-details__left,.cvr-details__right {
        max-width:100%; width:100%;
    }
    .cvr-hero__title { font-size:28px; line-height:36px; }
    .cvr-review-types { flex-direction:column; }
    .cvr-review-type { min-width:100%; }
    .cvr-results { padding:40px 24px; }
    .cvr-start-btn { width:100%; }
}


/* ════ RESULTS — SECTION 3 ══════════════════════
   Figma: padding 64px 100px, gap 24px
   ═══════════════════════════════════════════ */
.cvr-results {
    padding: 64px 100px;
    background: #ffffff;
    box-sizing: border-box;
    width: 100%;
}
.cvr-result-wrap {
    max-width: 1240px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 40px;
}
.cvr-error-box {
    padding: 20px 24px; border-radius: 16px;
    background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
    font-family: 'Montserrat',sans-serif; font-size: 14px; color: #B91C1C;
    text-align: center; max-width: 600px; margin: 0 auto;
}

/* ── Score Header ──
   Figma: flex-row, space-between, padding 32px 0, gap 64px, h 324px */
.cvr-score-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 0;
    gap: 48px;
    width: 100%;
    border-bottom: 1px solid #EEEFF6;
}
.cvr-score-header__text {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 12px;
    flex: 1;
}
/* Figma: h2 → 24px */
.cvr-score-header__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 24px;
    line-height: 32px; color: #2D335D; margin: 0;
}
.cvr-score-header__summary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 14px;
    line-height: 22px; color: #3A4278; margin: 0;
}
.cvr-score-header__role-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; line-height: 18px;
    color: #6B7280; margin: 0;
}

/* Sub-score pills */
.cvr-sub-scores {
    display: flex; flex-direction: row;
    gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.cvr-sub-score {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 12px 20px; border-radius: 14px;
    background: #F8F9FF; border: 1px solid #EEEFF6;
    min-width: 90px;
}
.cvr-sub-score__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 24px; line-height: 1;
}
.cvr-sub-score__lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 500; color: #6B7280;
    text-transform: uppercase; letter-spacing: 0.4px;
}

/* Donut circle — Figma: 260x260 */
.cvr-donut-wrap {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cvr-donut { display: block; }

/* ── Issues / Fix section title row ── */
.cvr-issues-section,
.cvr-fixes-section,
.cvr-strengths-section,
.cvr-skills-section,
.cvr-keywords-section,
.cvr-sections-analysis,
.cvr-detail-block {
    display: flex; flex-direction: column; gap: 16px; width: 100%;
}
.cvr-issues-section__title-row,
.cvr-fixes-section__title-row {
    display: flex; align-items: center; gap: 12px;
}
.cvr-issues-section__title-row h3,
.cvr-fixes-section__title-row h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 18px;
    line-height: 26px; color: #2D335D; margin: 0;
}
.cvr-block-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 16px;
    line-height: 24px; color: #2D335D; margin: 0;
}

/* ── Issues / Fix grid — 2 columns ──
   Figma: 608x126 per card */
.cvr-issues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

/* Issue card — Figma: bg rgba(251,251,253,0.5) border #F99292 radius 32 */
.cvr-issue-card {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 16px 20px; gap: 6px;
    background: rgba(251,251,253,0.5);
    border: 1px solid #F99292;
    border-radius: 24px;
    min-height: 90px;
    transition: border-color 0.2s, transform 0.2s;
}
.cvr-issue-card:hover { border-color: #EF4444; transform: translateY(-2px); }
.cvr-issue-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px;
    line-height: 20px; color: #2D335D; margin: 0;
}
.cvr-issue-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 12px;
    line-height: 18px; color: #6B7280; margin: 0;
}

/* Fix card — same layout, green border */
.cvr-fix-card {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 16px 20px; gap: 6px;
    background: rgba(249,252,249,0.7);
    border: 1px solid rgba(5,150,105,0.3);
    border-radius: 24px;
    min-height: 90px;
    transition: border-color 0.2s, transform 0.2s;
}
.cvr-fix-card:hover { border-color: #059669; transform: translateY(-2px); }
.cvr-fix-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px;
    line-height: 20px; color: #2D335D; margin: 0;
}
.cvr-fix-card__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 12px;
    line-height: 18px; color: #6B7280; margin: 0;
}

/* Strength card — purple border */
.cvr-strength-card {
    box-sizing: border-box;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 16px 20px; gap: 6px;
    background: rgba(118,97,180,0.04);
    border: 1px solid rgba(118,97,180,0.2);
    border-radius: 24px;
    min-height: 90px;
}

/* Section bars */
.cvr-section-bars { display: flex; flex-direction: column; gap: 20px; }
.cvr-sec-bar { display: flex; flex-direction: column; gap: 6px; }
.cvr-sec-bar__header {
    display: flex; justify-content: space-between; align-items: center;
}
.cvr-sec-bar__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px; color: #2D335D;
}
.cvr-sec-bar__score {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 13px;
}
.cvr-sec-bar__track {
    width: 100%; height: 8px;
    background: #F3F4FE; border-radius: 4px; overflow: hidden;
}
.cvr-sec-bar__fill {
    height: 100%; border-radius: 4px;
    transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.cvr-sec-bar__feedback {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; line-height: 18px; color: #6B7280; margin: 0;
}

/* Skills */
.cvr-skills-cols {
    display: flex; flex-direction: row; gap: 24px; flex-wrap: wrap;
}
.cvr-skills-col {
    flex: 1; min-width: 200px;
    display: flex; flex-direction: column; gap: 8px;
}
.cvr-skills-col__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 12px; color: #2D335D; margin: 0;
}
.cvr-recommended-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cvr-keywords-wrap { display: flex; flex-wrap: wrap; gap: 8px; }

/* Skill tags */
.cvr-skill-tag {
    display: inline-block; padding: 4px 12px; border-radius: 14px;
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 500;
}
.cvr-skill-tag--green {
    background: rgba(5,150,105,0.08);
    border: 1px solid rgba(5,150,105,0.25); color: #065F46;
}
.cvr-skill-tag--red {
    background: rgba(239,68,68,0.07);
    border: 1px solid rgba(239,68,68,0.2); color: #991B1B;
}
.cvr-skill-tag--blue {
    background: rgba(118,97,180,0.08);
    border: 1px solid rgba(118,97,180,0.2); color: #3A4278;
}

/* Detail blocks */
.cvr-detail-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; line-height: 22px; color: #374151; margin: 0;
    background: #F8F9FF; padding: 16px 20px;
    border-radius: 16px; border: 1px solid #EEEFF6;
}

/* CTA */
.cvr-result-cta {
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border-radius: 20px; padding: 32px 40px;
    display: flex; flex-direction: row;
    align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.cvr-result-cta p {
    font-family: 'Montserrat', sans-serif; font-size: 15px;
    color: rgba(255,255,255,0.85); margin: 0; flex: 1;
}
.cvr-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 24px;
    background: #ffffff; border: none;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 14px; color: #0D23AC !important;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    transition: opacity 0.15s;
}
.cvr-cta-btn:hover { opacity: 0.9; color: #0D23AC !important; }

/* Loading */
.cvr-loading {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px;
    padding: 80px 0; text-align: center;
}
.cvr-loading__spinner {
    width: 52px; height: 52px; border-radius: 50%;
    border: 3px solid rgba(118,97,180,0.2);
    border-top-color: #7661B4;
    animation: cvrSpin 0.8s linear infinite;
}
@keyframes cvrSpin { to { transform: rotate(360deg); } }
.cvr-loading__text {
    font-family: 'Montserrat', sans-serif; font-weight: 500;
    font-size: 15px; color: #3A4278; margin: 0;
}

/* ── Responsive ── */
@media(max-width:1280px){ .cvr-results { padding: 56px 60px; } }
@media(max-width:1024px){ .cvr-results { padding: 48px 40px; } }
@media(max-width:768px){
    .cvr-results { padding: 40px 24px; }
    .cvr-score-header { flex-direction: column; align-items: center; gap: 28px; }
    .cvr-donut-wrap { order: -1; }
    .cvr-issues-grid { grid-template-columns: 1fr; }
    .cvr-result-cta { flex-direction: column; text-align: center; }
    .cvr-skills-cols { flex-direction: column; }
}


/* ════ SECTION 4 — WHY THIS REVIEW WORKS ════════
   Figma: padding 96px 0, gap 32px
   bg: Gradd2 pastel gradient
   ═══════════════════════════════════════════ */
.cvr-why {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(107.49deg,
        #AED7EB 7.25%, #C598E3 51.3%,
        #92ADE6 73.32%, #888DE8 95.34%
    );
    text-align: center;
}

/* Figma: h2 → 26px */
.cvr-why__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 26px;
    line-height: 34px; color: #2D335D;
    margin: 0; padding: 0 100px;
    width: 100%; box-sizing: border-box;
    text-align: center;
}

/* 4-card row — Figma: padding 0 100px, gap 24px */
.cvr-why__cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 0 100px;
    width: 100%;
    box-sizing: border-box;
}

/* Single card — white frosted, radius 20 */
.cvr-why__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-height: 160px;
    transition: background 0.2s, transform 0.2s;
}
.cvr-why__card:hover {
    background: rgba(255,255,255,0.82);
    transform: translateY(-3px);
}
.cvr-why__card img {
    width: 48px; height: 48px;
    object-fit: contain; display: block;
}
.cvr-why__card-text { display: flex; flex-direction: column; gap: 4px; }
.cvr-why__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 13px;
    line-height: 20px; color: #2D335D;
    margin: 0; text-align: left;
}

/* Figma: h2 medium → 22px */
.cvr-why__cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 22px;
    line-height: 30px; color: #2D335D;
    margin: 0; padding: 0 100px;
    width: 100%; box-sizing: border-box;
}

/* Figma: h5 regular → 14px */
.cvr-why__cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; font-size: 14px;
    line-height: 22px; color: #3A4278;
    margin: 0;
}

/* Buttons stack */
.cvr-why__btns {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}

/* Primary — Figma: gradient #7661B4→#0D23AC radius 24 238x56 */
.cvr-why__btn-primary {
    display: inline-flex;
    justify-content: center; align-items: center;
    padding: 14px 32px;
    width: 220px; height: 52px;
    background: linear-gradient(107.49deg, #7661B4 7.25%, #0D23AC 95.34%);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 15px;
    color: #ffffff !important; text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    box-sizing: border-box;
}
.cvr-why__btn-primary:hover {
    opacity: 0.9; transform: translateY(-1px);
    color: #ffffff !important;
}

/* Link under button */
.cvr-why__btn-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 400;
    color: #3A4278; text-decoration: none;
    transition: color 0.15s;
}
.cvr-why__btn-link:hover { color: #0D23AC; text-decoration: underline; }

/* ── Responsive ── */
@media(max-width:1280px){
    .cvr-why__title,
    .cvr-why__cta-title { padding: 0 60px; }
    .cvr-why__cards { padding: 0 60px; }
}
@media(max-width:1024px){
    .cvr-why__title,
    .cvr-why__cta-title { padding: 0 40px; }
    .cvr-why__cards { padding: 0 40px; flex-wrap: wrap; }
    .cvr-why__card { min-width: calc(50% - 12px); flex: none; }
}
@media(max-width:768px){
    .cvr-why { padding: 56px 0; }
    .cvr-why__title,
    .cvr-why__cta-title { padding: 0 24px; font-size: 18px; }
    .cvr-why__cards { padding: 0 24px; flex-direction: column; }
    .cvr-why__card { width: 100%; min-height: auto; }
    .cvr-why__btn-primary { width: 100%; max-width: 320px; }
}
