/* ========== VARIABLES & BASE ========== */
:root {
    --hp-blue: #003366;
    --hp-blue-hover: #002244;
    --hp-orange: #FF6B35;
    --hp-orange-hover: #E55A24;
    --hp-gray: #333;
    --hp-gray-light: #666;
    --hp-border: #d1d6e0;
    --hp-light: #f5f6fa;
    --hp-radius: 6px;
}

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

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--hp-gray);
    line-height: 1.35;
}

/* ========== WRAPPER PRINCIPAL ========== */
.portal-wrapper {
    max-width: 1050px;
    margin: 40px auto;
    padding: 10px 20px 80px 20px;
}

/* ========== LOGO ZONE ========== */
.logo-zone {
    text-align: left;
    margin-bottom: 20px;
}

.client-logo {
    max-height: 120px;
    width: auto;
    border-radius: 4px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.10));
}

/* ========== TITRE DANS BOÎTE BLEUE ========== */
.portal-title-box {
    background: var(--hp-blue);
    color: white;
    padding: 24px 32px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0 26px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.portal-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 650;
    letter-spacing: 0.3px;
}

.portal-subtitle {
    font-size: 15px;
    margin: 0;
    letter-spacing: 0.2px;
    opacity: 0.95;
}

/* ========== SECTION TITLES ========== */
.section-divider {
    font-size: 20px;
    color: var(--hp-blue);
    text-align: left;
    margin: 45px 0 25px 0;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding-top: 20px;
    border-top: 2px solid var(--hp-border);
}

/* ========== GRILLE 2 OU 3 COLONNES ========== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 20px;
}

.cards-grid.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
    .cards-grid.three-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 799px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid.three-cols {
        grid-template-columns: 1fr;
    }
}

/* ========== CARDS ========== */
.card {
    border: 1px solid var(--hp-border);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.15s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
    border-bottom: 1px solid #edf0f5;
    background: #fafbfd;
}

.card-accent {
    width: 4px;
    height: 38px;
    background: var(--hp-blue);
    border-radius: 3px;
}

.card-accent.webinar {
    background: var(--hp-orange);
}

.card-accent.policy {
    background: #666666;
}

.card-icon {
    font-size: 24px;
    color: var(--hp-blue);
    opacity: 0.9;
}

.card-icon.webinar {
    color: var(--hp-orange);
}

.card-icon.policy {
    color: #666666;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--hp-blue);
    letter-spacing: 0.2px;
}

.card-title.webinar {
    color: var(--hp-orange);
}

.card-title.policy {
    color: #333;
}

.card-body {
    padding: 16px 20px;
    font-size: 14.2px;
    color: #444;
    line-height: 1.45;
    flex-grow: 1;
}

.card-footer {
    padding: 14px 20px 18px 20px;
    border-top: 1px solid #edf0f5;
    display: flex;
    gap: 10px;
}

.card-footer button {
    padding: 8px 20px;
    font-size: 14px;
    background: var(--hp-blue);
    color: white;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    flex: 1;
    font-weight: 500;
}

.card-footer button:hover {
    opacity: 0.85;
}

.card-footer button.test {
    background: #FFD700;
    color: #333;
    border: 1px solid #FF9800;
}

.card-footer button.test:hover {
    background: #FFC700;
    opacity: 1;
}

.card-footer button.secondary {
    background: transparent;
    color: var(--hp-blue);
    border: 1px solid var(--hp-blue);
}

.card-footer button.secondary:hover {
    background: var(--hp-light);
}

/* ========== TRUST BLOCK (SOCIAL PROOF) ========== */
.trust-block {
    background: linear-gradient(135deg, var(--hp-light) 0%, #ffffff 100%);
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    padding: 30px;
    margin: 50px 0 40px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-block h3 {
    color: var(--hp-blue);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-block p {
    color: var(--hp-gray-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0 30px 0;
}

.stat {
    font-weight: bold;
    color: var(--hp-blue);
    font-size: 28px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== CREDENTIALS SECTIONS (Conteneurs) ========== */
.credentials-section {
    margin: 24px 0;
    padding: 20px;
    background: rgba(0, 51, 102, 0.02);
    border-radius: 10px;
    border-left: 4px solid var(--hp-blue);
    text-align: left;
}

.credentials-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== EXPERTISE GRID (3 COLONNES RÉVISÉ) ========== */
.expertise-grid.expertise-3cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.expertise-domain {
    padding: 20px;
    background: white;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out backwards;
}

.expertise-domain:nth-child(1) { 
    animation-delay: 0.1s; 
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%); 
}
.expertise-domain:nth-child(2) { 
    animation-delay: 0.2s; 
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, transparent 100%); 
}
.expertise-domain:nth-child(3) { 
    animation-delay: 0.3s; 
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.02) 0%, transparent 100%); 
}

.expertise-domain:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--hp-orange);
}

.domain-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hp-border);
}

.domain-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-blue);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.domain-list li {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: default;
}

.domain-list li:hover {
    background: rgba(0, 51, 102, 0.08);
    transform: translateX(4px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--hp-blue);
    color: white;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.trust-cta:hover {
    background: var(--hp-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

/* ========== PROMO URGENCE - DÉCEMBRE ========== */
.promo-block {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 40px 30px;
    margin: 50px 0 50px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.promo-block * {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: #ffd700;
    color: #8b0000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.promo-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.promo-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.promo-price-old {
    color: rgba(255, 255, 255, 0.7);
    font-size: 60px;
    text-decoration: line-through;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.promo-price-new {
    color: #ffd700;
    font-size: 75px;
    font-weight: 700;
    margin: 12px 0;
}

.promo-price-per {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 20px;
}

.promo-cta {
    display: inline-block;
    background: #ffd700;
    color: #8b0000;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.promo-cta:hover {
    background: #ffed4e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.promo-deadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 25px;
    margin-top: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ========== URGENCY BLOCK ========== */
.urgency-block {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 5px solid #ff9800;
    border-radius: 10px;
    padding: 28px;
    margin: 50px 0 30px 0;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
}

.urgency-title {
    color: #d84315;
    font-size: 22px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.urgency-text {
    color: #444;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.urgency-highlight {
    color: #d84315;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 1.6;
}

/* ========== LEGAL BLOCK ========== */
.legal-block {
    background: white;
    border: 2px solid #003366;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0 40px 0;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.1);
}

.legal-title {
    color: #003366;
    font-size: 21px;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-align: left;
}

.legal-intro {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.legal-item {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.04) 0%, rgba(255, 107, 53, 0.02) 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #003366;
    transition: all 0.3s ease;
}


/* Ligne icône + titre dans chaque bloc légal */
.legal-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}



.legal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.08);
}

.legal-icon {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.legal-item h4 {
    color: #003366;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.legal-item p {
    color: #666;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.5;
}

.legal-cta-text {
    background: #f0f4f8;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    color: #333;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ========== TRAINING BLOCK ========== */
.training-block {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0 40px 0;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.08);
}

.training-title {
    color: #003366;
    font-size: 21px;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-align: center;
}

.training-intro {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 500;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.training-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid #003366;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.training-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 51, 102, 0.1);
}

.training-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #003366;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.training-item h4 {
    color: #003366;
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

.training-item p {
    color: #666;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.5;
}

.training-objective {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    color: #333;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ========== BONUS BLOCK ========== */
.bonus-block {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0 40px 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    text-align: center;
}

.bonus-title {
    color: #1b5e20;
    font-size: 22px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.bonus-text {
    color: #2e7d32;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-features {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.bonus-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* ========== CTA BUTTONS ========== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.cta-btn-primary {
    background: #1b5e20;
    color: white;
}

.cta-btn-primary:hover {
    background: #0d3817;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 94, 32, 0.3);
}

.cta-btn-secondary {
    background: #ff9800;
    color: white;
}

.cta-btn-secondary:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.3);
}

/* ========== ACCESS FORM ========== */
.access-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.access-form h4 {
    color: #003366;
    font-size: 16px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.form-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-submit {
    background: #003366;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background: #002244;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

/* ========== MODAL SÉCURITÉ EXISTANT ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    background: white;
    padding: 24px;
    width: 90%;
    max-width: 420px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-box h2 {
    color: var(--hp-blue);
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0;
}

.modal-box p {
    margin-bottom: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.modal-btn {
    padding: 10px 18px;
    background: var(--hp-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.modal-btn:hover {
    background: var(--hp-blue-hover);
}

/* ========== FOOTER ========== */
.app-footer {
    margin-top: 50px;
    padding: 22px 10px;
    text-align: center;
    font-size: 13.5px;
    color: #666;
    border-top: 1px solid #e3e6eb;
    line-height: 1.5;
}

.app-footer div {
    background: #fafbfd;
    padding: 8px 0;
}

/* ========== MODAL FORMULAIRE ACCÈS ========== */
.access-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.access-modal-overlay.show {
    display: flex;
}

.access-modal {
    background: #ffffff;
    border-radius: 12px;
    padding: 26px 24px 22px 24px;
    width: 95%;
    max-width: 460px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: popIn 0.25s ease-out;
}

.access-modal-title {
    font-size: 20px;
    color: #003366;
    margin: 0 0 6px 0;
    font-weight: 700;
    text-align: center;
}

.access-modal-subtitle {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.access-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #777;
    line-height: 1;
}

.access-modal-close:hover {
    color: #000;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========== STICKY CTA BUTTON ========== */
.sticky-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid #ffd700;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    gap: 8px;
}

.sticky-cta.show {
    display: inline-flex;
    animation: slideUp 0.35s ease-out;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .expertise-grid.expertise-3cols {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .legal-grid,
    .training-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .portal-wrapper {
        padding: 10px 15px 60px 15px;
    }

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

    .portal-subtitle {
        font-size: 13px;
    }

    .section-divider {
        font-size: 18px;
        margin: 35px 0 20px 0;
    }

    .trust-block {
        padding: 20px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .credentials-section {
        padding: 16px;
        border-left-width: 3px;
    }

    .credentials-title {
        font-size: 14px;
    }

    .expertise-grid.expertise-3cols {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .expertise-domain {
        padding: 16px;
    }

    .domain-icon {
        font-size: 24px;
    }

    .domain-title {
        font-size: 14px;
    }

    .domain-list li {
        font-size: 13px;
        padding: 6px 8px;
    }

    .urgency-block {
        padding: 20px;
        border-left-width: 4px;
    }

    .urgency-title {
        font-size: 18px;
    }

    .urgency-text,
    .urgency-highlight {
        font-size: 14px;
    }

    .legal-block {
        padding: 20px;
        border-width: 1px;
    }

    .legal-title {
        font-size: 18px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .legal-item {
        padding: 16px;
        border-left-width: 3px;
    }

    .training-title {
        font-size: 18px;
    }

    .training-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .training-item {
        padding: 16px;
    }

    .bonus-block {
        padding: 20px;
        border-radius: 8px;
    }

    .bonus-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .bonus-features {
        padding: 14px;
        gap: 10px;
    }

    .bonus-item {
        font-size: 13px;
        gap: 10px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .access-form {
        padding: 16px;
    }

    .sticky-cta {
        right: 10px;
        bottom: 12px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .access-modal {
        padding: 20px 18px 18px 18px;
    }
}
