/* ----------------------------------------------------------------------------
 * Page d'accueil + header/footer du site TREZORR.
 * Tout est prefixe `trezorr-vitrine-` pour eviter les collisions avec le theme.
 * --------------------------------------------------------------------------*/

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFC;
    color: #1E293B;
    line-height: 1.6;
}

/* Le theme Soludevi pose un article avec max-width:1200px et bordures
   gainsboro. Sur la home (et plus generalement la landing), on neutralise. */
body.home article.page,
body.home article {
    max-width: none;
    min-height: 0;
    margin: 0;
    border: none;
}
body.home #content,
body.home .container {
    margin: 0;
    padding: 0;
}
body.home .entry-header,
body.home article > header.entry-header {
    display: none;
}

/* ---------- Header ---------- */

.trezorr-vitrine-header {
    background: white;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.trezorr-vitrine-header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.trezorr-vitrine-header-nav a {
    color: #213E92;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.trezorr-vitrine-header-nav a:hover {
    color: #F2BB14;
}

@media (max-width: 768px) {
    .trezorr-vitrine-header-nav {
        display: none;
    }
}

.trezorr-vitrine-logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    line-height: 1;
}

.trezorr-vitrine-logo-blue {
    color: #213E92;
}

.trezorr-vitrine-logo-orange {
    color: #F2BB14;
}

.trezorr-vitrine-btn-connexion {
    padding: 12px 28px;
    background: #213E92;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.trezorr-vitrine-btn-connexion:hover {
    background: #1a3178;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 62, 146, 0.3);
    color: white;
}

/* ---------- Landing wrapper ---------- */

.trezorr-vitrine-landing,
.trezorr-vitrine-landing * {
    box-sizing: border-box;
}

.trezorr-vitrine-landing {
    color: #1E293B;
}

/* ---------- Hero ---------- */

.trezorr-vitrine-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.trezorr-vitrine-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #213E92;
    margin: 0 0 24px;
    line-height: 1.1;
}

.trezorr-vitrine-hero .trezorr-vitrine-highlight {
    color: #F2BB14;
}

.trezorr-vitrine-hero p {
    font-size: 22px;
    color: #64748B;
    margin: 0 auto 40px;
    max-width: 900px;
}

.trezorr-vitrine-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.trezorr-vitrine-btn-primary {
    padding: 16px 40px;
    background: #213E92;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.trezorr-vitrine-btn-primary:hover {
    background: #1a3178;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 62, 146, 0.3);
    color: white;
}

.trezorr-vitrine-btn-secondary {
    padding: 16px 40px;
    background: white;
    color: #213E92;
    border: 2px solid #213E92;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.trezorr-vitrine-btn-secondary:hover {
    background: #F0F4FF;
    color: #213E92;
}

/* ---------- Features ---------- */

.trezorr-vitrine-features {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

/* Grille verrouillee sur 3 colonnes fixes en desktop : le rendu des cartes
   (titre sur une ligne, description sur 3 lignes) est cale sur cette largeur. */
.trezorr-vitrine-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 860px) {
    .trezorr-vitrine-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .trezorr-vitrine-features-grid {
        grid-template-columns: 1fr;
    }
}

.trezorr-vitrine-feature-card {
    background: white;
    padding: 40px 28px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
    text-align: center;
}

.trezorr-vitrine-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #213E92;
}

.trezorr-vitrine-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

/* Titre sur une seule ligne, description reservant 3 lignes : toutes les
   cartes d'une meme rangee ont ainsi la meme hauteur. */
.trezorr-vitrine-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #213E92;
    margin: 0 0 12px;
    white-space: nowrap;
}

.trezorr-vitrine-feature-card p {
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    min-height: 5.1em;
}

/* ---------- Pricing ---------- */

.trezorr-vitrine-pricing {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.trezorr-vitrine-pricing h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #213E92;
    margin: 0 0 16px;
}

.trezorr-vitrine-pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748B;
    margin: 0 0 50px;
}

.trezorr-vitrine-pricing-interactive {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 50px;
    background: white;
    border-radius: 24px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trezorr-vitrine-slider-label {
    text-align: center;
    font-size: 16px;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 24px;
}

.trezorr-vitrine-slider-value {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #213E92;
    margin-bottom: 32px;
}

.trezorr-vitrine-slider-container {
    position: relative;
    margin-bottom: 16px;
}

.trezorr-vitrine-slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #213E92 0%, #F2BB14 100%);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.trezorr-vitrine-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border: 4px solid #213E92;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(33, 62, 146, 0.3);
    transition: all 0.2s;
}

.trezorr-vitrine-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(33, 62, 146, 0.4);
}

.trezorr-vitrine-slider-container input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: white;
    border: 4px solid #213E92;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(33, 62, 146, 0.3);
    transition: all 0.2s;
}

.trezorr-vitrine-slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(33, 62, 146, 0.4);
}

.trezorr-vitrine-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 4px;
}

.trezorr-vitrine-slider-labels span {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 600;
}

.trezorr-vitrine-pricing-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 48px 0;
}

.trezorr-vitrine-pricing-result-title {
    text-align: center;
    font-size: 18px;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 20px;
}

.trezorr-vitrine-price-display {
    text-align: center;
    margin-bottom: 12px;
}

.trezorr-vitrine-price-annual {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #213E92;
    line-height: 1;
}

.trezorr-vitrine-price-period {
    font-size: 18px;
    color: #64748B;
    font-weight: 500;
    margin-top: 8px;
}

.trezorr-vitrine-price-monthly {
    text-align: center;
    font-size: 16px;
    color: #F2BB14;
    font-weight: 600;
    padding: 12px 20px;
    background: #FFFBEB;
    border-radius: 12px;
    border: 1px solid #FEF3C7;
    margin-bottom: 16px;
}

.trezorr-vitrine-price-fct {
    text-align: center;
    font-size: 15px;
    color: white;
    font-weight: 700;
    padding: 16px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    margin-bottom: 32px;
}

.trezorr-vitrine-btn-pricing-cta {
    width: 100%;
    display: block;
    padding: 18px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.trezorr-vitrine-btn-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(33, 62, 146, 0.3);
    color: white;
}

/* ---------- CTA final ---------- */

.trezorr-vitrine-cta-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
}

.trezorr-vitrine-cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 16px;
    color: white;
}

.trezorr-vitrine-cta-section p {
    font-size: 18px;
    margin: 0 0 32px;
    opacity: 0.95;
}

.trezorr-vitrine-btn-white {
    padding: 16px 40px;
    background: white;
    color: #213E92;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.trezorr-vitrine-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    color: #213E92;
}

/* ---------- Footer ---------- */

.trezorr-vitrine-footer {
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

.trezorr-vitrine-footer-content {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
}

.trezorr-vitrine-footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    color: white;
}

.trezorr-vitrine-footer-section p,
.trezorr-vitrine-footer-section a {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.trezorr-vitrine-footer-section a:hover {
    color: #F2BB14;
}

.trezorr-vitrine-footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748B;
    font-size: 14px;
}

.trezorr-vitrine-footer-bottom p {
    margin: 0;
}

.trezorr-vitrine-footer-bottom a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.trezorr-vitrine-footer-bottom a:hover {
    color: #F2BB14;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .trezorr-vitrine-hero h1 {
        font-size: 38px;
    }

    .trezorr-vitrine-hero p {
        font-size: 18px;
    }

    .trezorr-vitrine-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trezorr-vitrine-pricing h2,
    .trezorr-vitrine-cta-section h2 {
        font-size: 32px;
    }

    .trezorr-vitrine-pricing-interactive {
        padding: 40px 24px;
    }
}

/* En une seule colonne, plus besoin d'egaliser les hauteurs de carte ; on
   reduit le titre pour qu'il tienne toujours sur une ligne. */
@media (max-width: 560px) {
    .trezorr-vitrine-feature-card h3 {
        font-size: 18px;
    }

    .trezorr-vitrine-feature-card p {
        min-height: 0;
    }
}

/* ============================================================================
 * Page "Essai gratuit"
 * Page de conversion plein ecran : on masque le header/footer du site et
 * l'article du theme, le body devient bleu degrade et le container blanc
 * est centre.
 * ==========================================================================*/

body.trezorr-vitrine-page-essai-gratuit {
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    min-height: 100vh;
}

body.trezorr-vitrine-page-essai-gratuit header#masthead,
body.trezorr-vitrine-page-essai-gratuit footer#colophon {
    display: none;
}

body.trezorr-vitrine-page-essai-gratuit article,
body.trezorr-vitrine-page-essai-gratuit article.page {
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

body.trezorr-vitrine-page-essai-gratuit #content,
body.trezorr-vitrine-page-essai-gratuit .container {
    margin: 0;
    padding: 0;
}

body.trezorr-vitrine-page-essai-gratuit .entry-header {
    display: none;
}

.trezorr-vitrine-trial,
.trezorr-vitrine-trial * {
    box-sizing: border-box;
}

.trezorr-vitrine-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.trezorr-vitrine-trial-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 540px;
    padding: 48px 40px;
}

.trezorr-vitrine-trial-logo {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.trezorr-vitrine-trial-title {
    text-align: center;
    color: #213E92;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px;
}

.trezorr-vitrine-trial-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 15px;
    margin: 0 0 40px;
    line-height: 1.6;
}

.trezorr-vitrine-trial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.trezorr-vitrine-trial-row .trezorr-vitrine-trial-group {
    margin-bottom: 0;
}

.trezorr-vitrine-trial-group {
    margin-bottom: 20px;
}

.trezorr-vitrine-trial label {
    display: block;
    color: #213E92;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trezorr-vitrine-trial .trezorr-vitrine-required {
    color: #F2BB14;
}

.trezorr-vitrine-trial input[type="text"],
.trezorr-vitrine-trial input[type="email"],
.trezorr-vitrine-trial input[type="tel"],
.trezorr-vitrine-trial input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: white;
}

.trezorr-vitrine-trial input[type="text"]:focus,
.trezorr-vitrine-trial input[type="email"]:focus,
.trezorr-vitrine-trial input[type="tel"]:focus,
.trezorr-vitrine-trial input[type="number"]:focus {
    outline: none;
    border-color: #213E92;
    box-shadow: 0 0 0 3px rgba(33, 62, 146, 0.1);
}

.trezorr-vitrine-trial-info {
    background: #F0F9FF;
    border: 2px solid #BAE6FD;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.trezorr-vitrine-trial-info-title {
    color: #213E92;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trezorr-vitrine-trial-info-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.trezorr-vitrine-trial-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

.trezorr-vitrine-trial-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 62, 146, 0.3);
}

.trezorr-vitrine-trial-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.trezorr-vitrine-trial-benefits {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.trezorr-vitrine-trial-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748B;
    font-size: 14px;
}

.trezorr-vitrine-trial-benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trezorr-vitrine-trial-back {
    text-align: center;
    margin-top: 32px;
}

.trezorr-vitrine-trial-back a {
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.trezorr-vitrine-trial-back a:hover {
    color: #213E92;
}

.trezorr-vitrine-trial-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.trezorr-vitrine-trial-message-success {
    background: #ECFDF5;
    border: 2px solid #A7F3D0;
    color: #065F46;
}

.trezorr-vitrine-trial-message-error {
    background: #FEF2F2;
    border: 2px solid #FECACA;
    color: #991B1B;
}

@media (max-width: 640px) {
    .trezorr-vitrine-trial-container {
        padding: 36px 28px;
    }

    .trezorr-vitrine-trial-logo {
        font-size: 32px;
    }

    .trezorr-vitrine-trial-title {
        font-size: 22px;
    }

    .trezorr-vitrine-trial-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
 * Page "Se connecter"
 * Meme principe que la page essai-gratuit : plein ecran, fond bleu degrade,
 * container blanc centre, header/footer du site masques.
 * ==========================================================================*/

body.trezorr-vitrine-page-connexion {
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    min-height: 100vh;
}

body.trezorr-vitrine-page-connexion header#masthead,
body.trezorr-vitrine-page-connexion footer#colophon {
    display: none;
}

body.trezorr-vitrine-page-connexion article,
body.trezorr-vitrine-page-connexion article.page {
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

body.trezorr-vitrine-page-connexion #content,
body.trezorr-vitrine-page-connexion .container {
    margin: 0;
    padding: 0;
}

body.trezorr-vitrine-page-connexion .entry-header {
    display: none;
}

.trezorr-vitrine-login,
.trezorr-vitrine-login * {
    box-sizing: border-box;
}

.trezorr-vitrine-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.trezorr-vitrine-login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
}

.trezorr-vitrine-login-logo {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.trezorr-vitrine-login-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 15px;
    margin: 0 0 40px;
}

.trezorr-vitrine-login-group {
    margin-bottom: 24px;
}

.trezorr-vitrine-login label {
    display: block;
    color: #213E92;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trezorr-vitrine-login input[type="email"],
.trezorr-vitrine-login input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: white;
}

.trezorr-vitrine-login input[type="email"]:focus,
.trezorr-vitrine-login input[type="password"]:focus {
    outline: none;
    border-color: #213E92;
    box-shadow: 0 0 0 3px rgba(33, 62, 146, 0.1);
}

.trezorr-vitrine-login-remember {
    margin-bottom: 24px;
}

.trezorr-vitrine-login-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
}

.trezorr-vitrine-login-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #213E92;
    cursor: pointer;
}

.trezorr-vitrine-login-forgot-wrap {
    text-align: center;
    margin-top: 16px;
}

.trezorr-vitrine-login-forgot {
    color: #94A3B8;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.trezorr-vitrine-login-forgot:hover {
    color: #213E92;
    text-decoration: underline;
}

.trezorr-vitrine-login-lost-intro {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px;
    text-align: center;
}

.trezorr-vitrine-login-lost-retour {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 14px;
    cursor: pointer;
    padding: 16px 0 0;
    display: block;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.trezorr-vitrine-login-lost-retour:hover {
    color: #213E92;
}


.trezorr-vitrine-login-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

.trezorr-vitrine-login-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 62, 146, 0.3);
}

.trezorr-vitrine-login-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.trezorr-vitrine-login-message {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.trezorr-vitrine-login-message-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.trezorr-vitrine-login-divider {
    text-align: center;
    margin: 32px 0;
    color: #94A3B8;
    font-size: 14px;
    position: relative;
}

.trezorr-vitrine-login-divider::before,
.trezorr-vitrine-login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #E2E8F0;
}

.trezorr-vitrine-login-divider::before { left: 0; }
.trezorr-vitrine-login-divider::after  { right: 0; }

.trezorr-vitrine-login-signup {
    text-align: center;
    color: #64748B;
    font-size: 14px;
}

.trezorr-vitrine-login-signup a {
    color: #F2BB14;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.trezorr-vitrine-login-signup a:hover {
    color: #E5A800;
    text-decoration: underline;
}

.trezorr-vitrine-login-back {
    text-align: center;
    margin-top: 32px;
}

.trezorr-vitrine-login-back a {
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.trezorr-vitrine-login-back a:hover {
    color: #213E92;
}

/* Ecran de choix multi-comptes */

.trezorr-vitrine-login-choix-titre {
    text-align: center;
    color: #213E92;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 24px;
}

.trezorr-vitrine-login-choix-liste {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.trezorr-vitrine-login-choix-item {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trezorr-vitrine-login-choix-item:hover {
    border-color: #213E92;
    box-shadow: 0 4px 12px rgba(33, 62, 146, 0.15);
    transform: translateY(-1px);
}

.trezorr-vitrine-login-choix-libelle {
    color: #213E92;
    font-weight: 700;
    font-size: 15px;
}

.trezorr-vitrine-login-choix-domaine {
    color: #64748B;
    font-size: 13px;
    font-family: monospace;
}

.trezorr-vitrine-login-choix-retour {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    display: block;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.trezorr-vitrine-login-choix-retour:hover {
    color: #213E92;
}

@media (max-width: 480px) {
    .trezorr-vitrine-login-container {
        padding: 36px 28px;
    }
    .trezorr-vitrine-login-logo {
        font-size: 32px;
    }
}

/* ============================================================================
 * Page "Mentions legales" (et a terme autres pages de contenu statiques)
 * Header / footer du site visibles, contenu dans l'article du theme.
 * On override le entry-title pour qu'il prenne les couleurs TREZORR.
 * ==========================================================================*/

body.trezorr-vitrine-page-mentions-legales article {
    max-width: 800px;
    padding: 40px 20px 60px;
    border: none;
    min-height: 0;
}

body.trezorr-vitrine-page-mentions-legales .entry-title {
    color: #213E92;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: left;
}

.trezorr-vitrine-legal {
    color: #1E293B;
    font-size: 15px;
    line-height: 1.6;
}

.trezorr-vitrine-legal-section {
    margin-bottom: 32px;
}

.trezorr-vitrine-legal-section h2 {
    color: #213E92;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}

.trezorr-vitrine-legal-section p {
    color: #1E293B;
    margin: 0 0 4px;
}

.trezorr-vitrine-legal-section a {
    color: #F2BB14;
    text-decoration: none;
    font-weight: 600;
}

.trezorr-vitrine-legal-section a:hover {
    text-decoration: underline;
}

/* ============================================================================
 * Page "Contactez-nous"
 * Page de contenu standard (header/footer du site visibles), avec un
 * formulaire AJAX dans l'article du theme.
 * ==========================================================================*/

body.trezorr-vitrine-page-contactez-nous article {
    max-width: 720px;
    padding: 40px 20px 60px;
    border: none;
    min-height: 0;
}

body.trezorr-vitrine-page-contactez-nous .entry-title {
    color: #213E92;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: left;
}

.trezorr-vitrine-contact,
.trezorr-vitrine-contact * {
    box-sizing: border-box;
}

.trezorr-vitrine-contact-intro {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
}

.trezorr-vitrine-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.trezorr-vitrine-contact-row .trezorr-vitrine-contact-group {
    margin-bottom: 0;
}

.trezorr-vitrine-contact-group {
    margin-bottom: 20px;
}

.trezorr-vitrine-contact label {
    display: block;
    color: #213E92;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trezorr-vitrine-contact .trezorr-vitrine-required {
    color: #F2BB14;
}

.trezorr-vitrine-contact input[type="text"],
.trezorr-vitrine-contact input[type="email"],
.trezorr-vitrine-contact textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: white;
}

.trezorr-vitrine-contact textarea {
    resize: vertical;
    min-height: 140px;
}

.trezorr-vitrine-contact input[type="text"]:focus,
.trezorr-vitrine-contact input[type="email"]:focus,
.trezorr-vitrine-contact textarea:focus {
    outline: none;
    border-color: #213E92;
    box-shadow: 0 0 0 3px rgba(33, 62, 146, 0.1);
}

.trezorr-vitrine-contact-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #213E92 0%, #1a3178 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}

.trezorr-vitrine-contact-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 62, 146, 0.3);
}

.trezorr-vitrine-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.trezorr-vitrine-contact-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.trezorr-vitrine-contact-message-success {
    background: #ECFDF5;
    border: 2px solid #A7F3D0;
    color: #065F46;
}

.trezorr-vitrine-contact-message-error {
    background: #FEF2F2;
    border: 2px solid #FECACA;
    color: #991B1B;
}

@media (max-width: 640px) {
    .trezorr-vitrine-contact-row {
        grid-template-columns: 1fr;
    }
}
