/* GIWT Homepage — Frontend styles (extracted from mockup-home-v7) */


/* ═══════════════════════════════════════════════════════════════
   GIWT — Homepage v7
   Sobre, humaine, mature, sans hype
═══════════════════════════════════════════════════════════════ */

:root {
    --ghp-primary: #5c7c5c;
    --ghp-primary-dark: #4a6349;
    --ghp-primary-deep: #2E4032;
    --ghp-accent: #c9a962;
    --ghp-accent-dark: #a88a4a;
    --ghp-cta: #B8543A;
    --ghp-cta-dark: #8B3D26;
    --ghp-cream: #faf8f3;
    --ghp-cream-darker: #f3efe6;
    --ghp-text: #2E4032;
    --ghp-text-light: #5a6d5e;
    --ghp-text-muted: #8a978c;
    --ghp-border: #e5e2d8;
    --ghp-white: #ffffff;

    --ghp-font-display: 'Lora', Georgia, serif;
    --ghp-font-body: 'Open Sans', -apple-system, sans-serif;

    --ghp-radius-sm: 8px;
    --ghp-radius-md: 16px;
    --ghp-radius-lg: 24px;
    --ghp-radius-pill: 999px;

    --ghp-shadow-sm: 0 2px 8px rgba(46, 64, 50, 0.06);
    --ghp-shadow-md: 0 8px 32px rgba(46, 64, 50, 0.08);
    --ghp-shadow-lg: 0 20px 60px rgba(46, 64, 50, 0.12);
}

.giwt-hp-wrapper *, .giwt-hp-wrapper *::before, .giwt-hp-wrapper *::after { box-sizing: border-box; }

.giwt-hp-wrapper {
    margin: 0;
    font-family: var(--ghp-font-body);
    color: var(--ghp-text);
    background: var(--ghp-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--ghp-font-display);
    color: var(--ghp-primary-deep);
    margin: 0;
    line-height: 1.2;
    font-weight: 600;
}

p { margin: 0 0 1em; }

.giwt-hp-eyebrow {
    display: inline-block;
    font-family: var(--ghp-font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ghp-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.giwt-hp-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.giwt-hp-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.giwt-hp-section-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

.giwt-hp-section-header h2 em {
    color: var(--ghp-accent);
    font-style: italic;
}

.giwt-hp-section-header p {
    font-size: 17px;
    color: var(--ghp-text-light);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════════ */

.giwt-hp-hero {
    position: relative;
    padding: 120px 0 100px;
    background: var(--ghp-primary-deep);
    color: white;
    overflow: hidden;
}

.giwt-hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--giwt-hp-hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 1;
}

.giwt-hp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(46, 64, 50, 0.78) 0%,
        rgba(46, 64, 50, 0.55) 50%,
        rgba(46, 64, 50, 0.40) 100%);
    z-index: 2;
}

.giwt-hp-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.giwt-hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: var(--ghp-radius-pill);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ghp-accent);
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.giwt-hp-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--ghp-accent);
    border-radius: 50%;
}

.giwt-hp-hero h1 {
    color: white;
    font-size: clamp(40px, 5.5vw, 60px);
    line-height: 1.08;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.giwt-hp-hero h1 em {
    color: var(--ghp-accent);
    font-style: italic;
    font-weight: 500;
}

.giwt-hp-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.giwt-hp-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.giwt-hp-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ghp-cta);
    color: white;
    padding: 17px 36px;
    border-radius: var(--ghp-radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 20px rgba(184, 84, 58, 0.3);
}

.giwt-hp-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 84, 58, 0.4);
    background: var(--ghp-cta-dark);
}

.giwt-hp-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 17px 36px;
    border-radius: var(--ghp-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.giwt-hp-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.giwt-hp-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--ghp-radius-pill);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    justify-content: center;
}

.giwt-hp-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.giwt-hp-hero-meta-item strong {
    color: white;
    font-weight: 700;
}

.giwt-hp-hero-meta-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   2. TRUST BAR
═══════════════════════════════════════════════════════════════ */

.giwt-hp-trust {
    padding: 56px 0;
    background: var(--ghp-cream);
    border-bottom: 1px solid var(--ghp-border);
}

.giwt-hp-trust-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}

.giwt-hp-trust-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.giwt-hp-trust-stat {
    text-align: left;
}

.giwt-hp-trust-stat-num {
    font-family: var(--ghp-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--ghp-primary-deep);
    line-height: 1;
    margin-bottom: 6px;
}

.giwt-hp-trust-stat-num em {
    color: var(--ghp-accent);
    font-style: normal;
}

.giwt-hp-trust-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghp-text-muted);
    font-weight: 600;
}

.giwt-hp-trust-certs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.giwt-hp-trust-cert {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.giwt-hp-trust-cert:hover { opacity: 1; }

.giwt-hp-trust-cert img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.giwt-hp-trust-cert-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: var(--ghp-text-muted);
    line-height: 1.3;
}

.giwt-hp-trust-cert-text strong {
    color: var(--ghp-primary-deep);
    font-size: 12px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   3. MANIFESTE (4 convictions + photo)
═══════════════════════════════════════════════════════════════ */

.giwt-hp-manifesto {
    padding: 110px 0;
    background: var(--ghp-white);
}

.giwt-hp-manifesto-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    margin-top: 64px;
    align-items: stretch;
}

.giwt-hp-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.giwt-hp-manifesto-card {
    background: var(--ghp-cream);
    border-radius: var(--ghp-radius-md);
    padding: 30px 28px 26px;
    border: 1px solid var(--ghp-border);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.giwt-hp-manifesto-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ghp-shadow-md);
}

.giwt-hp-manifesto-card-num {
    font-family: var(--ghp-font-display);
    font-size: 54px;
    color: var(--ghp-accent);
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 500;
    font-style: italic;
    opacity: 0.6;
}

.giwt-hp-manifesto-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--ghp-primary-deep);
}

.giwt-hp-manifesto-card p {
    color: var(--ghp-text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.giwt-hp-manifesto-photo {
    border-radius: var(--ghp-radius-lg);
    background-image: url('https://global-institute-of-wellness-therapy.com/wp-content/uploads/2026/05/team_2.png');
    background-size: cover;
    background-position: center;
    box-shadow: var(--ghp-shadow-lg);
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.giwt-hp-manifesto-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 50%,
        rgba(46, 64, 50, 0.75) 100%);
}

.giwt-hp-manifesto-photo-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 2;
    color: white;
    font-family: var(--ghp-font-display);
    font-size: 17px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
}

.giwt-hp-manifesto-photo-caption strong {
    display: block;
    font-style: normal;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ghp-accent);
    margin-top: 12px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   4. FORMATIONS POPULAIRES
═══════════════════════════════════════════════════════════════ */

.giwt-hp-formations {
    padding: 110px 0;
    background: var(--ghp-cream);
}

.giwt-hp-formations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    align-items: stretch;
}

.giwt-hp-formation-card {
    background: var(--ghp-white);
    border-radius: var(--ghp-radius-md);
    overflow: hidden;
    border: 1px solid var(--ghp-border);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.giwt-hp-formation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ghp-shadow-lg);
    border-color: var(--ghp-primary);
}

/* Image (avec ou sans thumbnail) */
.giwt-hp-formation-card-img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--ghp-cream);
    position: relative;
    flex-shrink: 0;
    border-bottom: 1px solid var(--ghp-border);
}

.giwt-hp-formation-card-img-empty {
    background: linear-gradient(135deg, var(--ghp-cream) 0%, var(--ghp-cream-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.giwt-hp-formation-card-placeholder-icon {
    font-size: 56px;
    color: var(--ghp-accent);
    opacity: 0.35;
}

/* Badge en haut à gauche de l'image */
.giwt-hp-formation-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ghp-primary-deep);
    padding: 5px 11px;
    border-radius: var(--ghp-radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(46, 64, 50, 0.15);
}

/* Body */
.giwt-hp-formation-card-body {
    padding: 20px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ligne "catégorie + niveau" en haut */
.giwt-hp-formation-card-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    min-height: 18px;
    flex-wrap: wrap;
}

.giwt-hp-formation-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ghp-accent);
    font-weight: 700;
    line-height: 1.2;
}

.giwt-hp-formation-card-level {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ghp-primary);
    font-weight: 700;
    background: rgba(92, 124, 92, 0.1);
    padding: 3px 8px;
    border-radius: var(--ghp-radius-pill);
    line-height: 1.2;
}

/* Titre — tronqué à 2 lignes max */
.giwt-hp-formation-card-title {
    font-family: var(--ghp-font-display);
    font-size: 16px;
    line-height: 1.35;
    margin: 0 0 12px;
    color: var(--ghp-primary-deep);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Hauteur fixe pour aligner les éléments suivants */
    min-height: calc(1.35em * 2);
}

/* Rating (étoiles + note) */
.giwt-hp-formation-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    min-height: 18px;
}

.giwt-hp-formation-card-stars {
    color: var(--ghp-accent);
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.giwt-hp-formation-card-rating-num {
    font-size: 13px;
    color: var(--ghp-primary-deep);
    font-weight: 600;
}

.giwt-hp-formation-card-rating-count {
    font-size: 12px;
    color: var(--ghp-text-muted);
}

/* Footer avec prix + arrow */
.giwt-hp-formation-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--ghp-border);
}

.giwt-hp-formation-card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    flex: 1;
    min-width: 0;
}

.giwt-hp-formation-card-price-old {
    font-size: 12px;
    color: var(--ghp-text-muted);
    text-decoration: line-through;
    font-weight: 400;
    font-family: var(--ghp-font-body);
    margin-bottom: 2px;
}

.giwt-hp-formation-card-price-current {
    font-family: var(--ghp-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ghp-primary-deep);
    line-height: 1;
}

.giwt-hp-formation-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--ghp-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s, transform 0.25s;
    flex-shrink: 0;
}

.giwt-hp-formation-card:hover .giwt-hp-formation-card-arrow {
    background: var(--ghp-primary-dark);
    transform: translateX(3px);
}

.giwt-hp-formations-cta-wrapper {
    text-align: center;
}

.giwt-hp-formations-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ghp-primary-deep);
    color: white;
    padding: 16px 36px;
    border-radius: var(--ghp-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s, transform 0.2s;
}

.giwt-hp-formations-cta:hover {
    background: var(--ghp-primary);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   5. CATÉGORIES (14 thématiques)
═══════════════════════════════════════════════════════════════ */

.giwt-hp-categories {
    padding: 110px 0;
    background: var(--ghp-white);
}

.giwt-hp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.giwt-hp-category-card {
    background: var(--ghp-cream);
    border: 1px solid var(--ghp-border);
    border-radius: var(--ghp-radius-md);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.giwt-hp-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ghp-accent);
    opacity: 0;
    transition: opacity 0.2s;
}

.giwt-hp-category-card:hover {
    background: var(--ghp-white);
    border-color: var(--ghp-primary);
    transform: translateY(-2px);
    box-shadow: var(--ghp-shadow-md);
}

.giwt-hp-category-card:hover::before {
    opacity: 1;
}

.giwt-hp-category-card-icon {
    font-size: 26px;
    margin-bottom: 6px;
    line-height: 1;
}

.giwt-hp-category-card-title {
    font-family: var(--ghp-font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ghp-primary-deep);
    line-height: 1.25;
    margin-bottom: 6px;
}

.giwt-hp-category-card-count {
    font-size: 12px;
    color: var(--ghp-text-muted);
    font-weight: 600;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.giwt-hp-category-card-count::after {
    content: '→';
    margin-left: auto;
    font-size: 16px;
    color: var(--ghp-primary);
    transition: transform 0.2s;
}

.giwt-hp-category-card:hover .giwt-hp-category-card-count::after {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   6. ATELIERS EN PRÉSENTIEL (teaser)
═══════════════════════════════════════════════════════════════ */

.giwt-hp-workshops {
    padding: 110px 0;
    background: var(--ghp-cream-darker);
    position: relative;
    overflow: hidden;
}

.giwt-hp-workshops-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.giwt-hp-workshops-content {
    z-index: 2;
}

.giwt-hp-workshops-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 24px;
    color: var(--ghp-primary-deep);
}

.giwt-hp-workshops-content h2 em {
    color: var(--ghp-accent);
    font-style: italic;
}

.giwt-hp-workshops-content p {
    font-size: 17px;
    color: var(--ghp-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.giwt-hp-workshops-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--ghp-radius-md);
    border: 1px solid var(--ghp-border);
}

.giwt-hp-workshops-stat {
    flex: 1;
}

.giwt-hp-workshops-stat-num {
    font-family: var(--ghp-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ghp-primary-deep);
    line-height: 1.1;
    margin-bottom: 4px;
}

.giwt-hp-workshops-stat-label {
    font-size: 12px;
    color: var(--ghp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.giwt-hp-workshops-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ghp-cta);
    color: white;
    padding: 16px 32px;
    border-radius: var(--ghp-radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(184, 84, 58, 0.3);
    transition: all 0.2s;
}

.giwt-hp-workshops-cta:hover {
    background: var(--ghp-cta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 84, 58, 0.4);
}

.giwt-hp-workshops-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--ghp-radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--ghp-shadow-lg);
    position: relative;
    overflow: hidden;
}

.giwt-hp-workshops-photo-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-radius: var(--ghp-radius-md);
    font-size: 13px;
    color: var(--ghp-text);
    line-height: 1.4;
}

.giwt-hp-workshops-photo-tag strong {
    color: var(--ghp-primary-deep);
    display: block;
    font-family: var(--ghp-font-display);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   7. HOLISTIC REVIEWS (mocked - widget réel injecté par le snippet)
═══════════════════════════════════════════════════════════════ */

.giwt-hp-hr-section {
    padding: 110px 0;
    background: var(--ghp-white);
}

.giwt-hp-hr-mock-wrapper {
    max-width: 1180px;
    margin: 56px auto 0;
    padding: 0 24px;
}

.giwt-hp-hr-mock-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--ghp-white);
    border: 1px solid var(--ghp-border);
    border-radius: var(--ghp-radius-lg);
    overflow: hidden;
    box-shadow: var(--ghp-shadow-md);
}

.giwt-hp-hr-mock-left {
    background: var(--ghp-cream);
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid var(--ghp-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.giwt-hp-hr-mock-brand {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.giwt-hp-hr-mock-score {
    font-family: var(--ghp-font-display);
    font-size: 58px;
    font-weight: 700;
    color: var(--ghp-primary-deep);
    line-height: 1;
}

.giwt-hp-hr-mock-label {
    background: #10b981;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--ghp-radius-pill);
}

.giwt-hp-hr-mock-stars {
    color: #fbbf24;
    font-size: 22px;
    letter-spacing: 4px;
    margin: 4px 0;
}

.giwt-hp-hr-mock-count {
    font-size: 14px;
    color: var(--ghp-text-light);
    font-weight: 600;
}

.giwt-hp-hr-mock-recent {
    font-size: 12px;
    color: var(--ghp-text-muted);
}

.giwt-hp-hr-mock-link {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--ghp-border);
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    width: 100%;
}

.giwt-hp-hr-mock-link:hover {
    color: #059669;
    text-decoration: underline;
}

.giwt-hp-hr-mock-right {
    padding: 28px;
    overflow: hidden;
}

.giwt-hp-hr-mock-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.giwt-hp-hr-mock-review {
    background: var(--ghp-cream);
    border: 1px solid var(--ghp-border);
    border-radius: var(--ghp-radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.giwt-hp-hr-mock-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.giwt-hp-hr-mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.giwt-hp-hr-mock-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--ghp-primary-deep);
    line-height: 1.2;
}

.giwt-hp-hr-mock-date {
    font-size: 12px;
    color: var(--ghp-text-muted);
}

.giwt-hp-hr-mock-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.giwt-hp-hr-mock-review-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.giwt-hp-hr-mock-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.giwt-hp-hr-mock-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.giwt-hp-hr-mock-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--ghp-primary-deep);
    line-height: 1.3;
}

.giwt-hp-hr-mock-content {
    font-size: 13px;
    color: var(--ghp-text-light);
    line-height: 1.5;
}

.giwt-hp-hr-mock-note {
    margin-top: 24px;
    padding: 14px 20px;
    background: #f0f9ff;
    border: 1px dashed #3b82f6;
    border-radius: var(--ghp-radius-sm);
    font-size: 13px;
    color: #1e40af;
    text-align: center;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   8. TÉMOIGNAGES (carrousel 8 avis textes)
═══════════════════════════════════════════════════════════════ */

.giwt-hp-testimonials {
    padding: 110px 0;
    background: var(--ghp-cream);
}

.giwt-hp-testi-carousel-wrapper {
    margin-top: 56px;
    position: relative;
}

.giwt-hp-testi-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 24px 24px;
    max-width: 1228px;
    margin: 0 auto;
}

.giwt-hp-testi-carousel::-webkit-scrollbar { display: none; }

.giwt-hp-testimonial {
    flex: 0 0 auto;
    width: 380px;
    max-width: calc(100vw - 80px);
    background: var(--ghp-white);
    border-radius: var(--ghp-radius-md);
    padding: 32px 32px 28px;
    border: 1px solid var(--ghp-border);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--ghp-shadow-sm);
}

.giwt-hp-testimonial-stars {
    color: var(--ghp-accent);
    font-size: 16px;
    letter-spacing: 3px;
}

.giwt-hp-testimonial-text {
    font-family: var(--ghp-font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--ghp-text);
    line-height: 1.6;
    flex: 1;
}

.giwt-hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ghp-border);
}

.giwt-hp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ghp-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ghp-font-display);
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.giwt-hp-testimonial-author-info {
    line-height: 1.3;
}

.giwt-hp-testimonial-author-name {
    font-weight: 600;
    color: var(--ghp-primary-deep);
    font-size: 15px;
}

.giwt-hp-testimonial-author-meta {
    font-size: 12px;
    color: var(--ghp-text-muted);
    margin-top: 2px;
}

.giwt-hp-testi-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.giwt-hp-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ghp-border);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}

.giwt-hp-testi-dot.active {
    background: var(--ghp-primary);
    width: 24px;
    border-radius: var(--ghp-radius-pill);
}

.giwt-hp-testi-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.giwt-hp-testi-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ghp-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--ghp-primary);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.giwt-hp-testi-cta:hover {
    color: var(--ghp-primary-dark);
}

/* ═══════════════════════════════════════════════════════════════
   9. CTA FINAL
═══════════════════════════════════════════════════════════════ */

.giwt-hp-final-cta {
    padding: 120px 24px;
    background: var(--ghp-cta);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.giwt-hp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.15), transparent 60%);
}

.giwt-hp-final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.giwt-hp-final-cta h2 {
    color: white;
    font-size: clamp(32px, 4.5vw, 48px);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 600;
}

.giwt-hp-final-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    line-height: 1.6;
}

.giwt-hp-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--ghp-cta-dark);
    padding: 18px 40px;
    border-radius: var(--ghp-radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.giwt-hp-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.giwt-hp-final-cta-trust {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--ghp-radius-pill);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    flex-wrap: wrap;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.giwt-hp-final-cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .giwt-hp-trust-inner { grid-template-columns: 1fr; gap: 32px; }
    .giwt-hp-trust-certs { justify-content: flex-start; }
    .giwt-hp-manifesto-layout { grid-template-columns: 1fr; gap: 32px; }
    .giwt-hp-manifesto-photo { min-height: 380px; }
    .giwt-hp-manifesto-grid { gap: 20px; }
    .giwt-hp-formations-grid { grid-template-columns: repeat(2, 1fr); }
    .giwt-hp-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .giwt-hp-workshops-inner { grid-template-columns: 1fr; gap: 40px; }
    .giwt-hp-workshops-photo { aspect-ratio: 16 / 10; max-height: 480px; }
    .giwt-hp-hr-mock-card { grid-template-columns: 1fr; }
    .giwt-hp-hr-mock-left { border-right: none; border-bottom: 1px solid var(--ghp-border); padding: 28px; }
    .giwt-hp-hr-mock-reviews { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .giwt-hp-hero { padding: 80px 0 60px; }
    .giwt-hp-hero-meta { gap: 14px; padding: 12px 20px; }
    .giwt-hp-hero-meta-divider { display: none; }
    .giwt-hp-manifesto, .giwt-hp-formations, .giwt-hp-categories, .giwt-hp-workshops, .giwt-hp-hr-section, .giwt-hp-testimonials { padding: 70px 0; }
    .giwt-hp-manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
    .giwt-hp-manifesto-card { padding: 24px 22px; }
    .giwt-hp-manifesto-photo { min-height: 280px; }
    .giwt-hp-manifesto-photo-caption { font-size: 15px; bottom: 20px; left: 20px; right: 20px; }
    .giwt-hp-formations-grid { grid-template-columns: 1fr; gap: 20px; }
    .giwt-hp-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .giwt-hp-category-card { padding: 22px 18px; }
    .giwt-hp-workshops-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .giwt-hp-testimonial { width: 320px; padding: 24px; }
    .giwt-hp-final-cta { padding: 80px 24px; }
    .giwt-hp-final-cta-trust { gap: 12px; padding: 12px 20px; }
}

@media (max-width: 480px) {
    .giwt-hp-hero h1 { font-size: 36px; }
    .giwt-hp-hero-ctas { flex-direction: column; align-items: stretch; }
    .giwt-hp-hero-btn-primary, .giwt-hp-hero-btn-secondary { justify-content: center; }
    .giwt-hp-trust-stats { gap: 24px; }
    .giwt-hp-testimonial { width: calc(100vw - 80px); }
}


/* === Cache le mock-note Holistic Reviews en prod === */
.giwt-hp-wrapper .giwt-hp-hr-mock-note { display: none; }

/* === Section HR : conteneur invisible (juste ancre pour le snippet) === */
.giwt-hp-hr-marker {
    /* Bloc invisible servant d'ancre pour le snippet HR.
       Le widget HR sera injecté JUSTE AVANT ce bloc, donc pile entre
       le header de la section et la fin de la section. */
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.giwt-hp-hr-anchor {
    display: none;
}

/* === Message de chargement avant injection === */
.giwt-hp-hr-loading {
    text-align: center;
    color: var(--ghp-text-muted);
    font-style: italic;
    font-size: 14px;
    padding: 40px 0;
    margin: 0;
}

/* === Quand le widget HR est injecté, retirer notre loading === */
/* Le widget injecté est .hr-custom-wrapper. Si on le trouve dans .giwt-hp-hr-section,
   on cache le message de chargement (le widget prend toute la place). */
.giwt-hp-hr-section:has(.hr-custom-wrapper) .giwt-hp-hr-loading {
    display: none;
}

/* === Cosmétique du widget HR injecté dans notre section === */
.giwt-hp-hr-section .hr-custom-wrapper {
    margin: 24px auto 0;
    padding: 0 24px;
}
