/*
Theme Name: GouVerif
Theme URI: https://www.gouverif.fr
Description: Thème de vérification de fiabilité de sites web
Author: GouVerif
Version: 2.0
Text Domain: gouverif
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gv-primary: #2e7d32;
    --gv-primary-dark: #1b5e20;
    --gv-primary-light: #4caf50;
    --gv-danger: #c62828;
    --gv-warning: #f57f17;
    --gv-orange: #ef6c00;
    --gv-bg: #ffffff;
    --gv-bg-alt: #f5f7fa;
    --gv-text: #212121;
    --gv-text-light: #616161;
    --gv-border: #e0e0e0;
    --gv-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --gv-shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
    --gv-radius: 8px;
    --gv-radius-lg: 12px;
    --gv-max-width: 1200px;
    --gv-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--gv-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gv-text);
    background: var(--gv-bg);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gv-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gv-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--gv-text);
    margin-bottom: .5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }

.gv-container {
    max-width: var(--gv-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.gv-header {
    background: var(--gv-bg);
    border-bottom: 1px solid var(--gv-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
}

.gv-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gv-text);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.gv-logo span { color: var(--gv-primary); }
.gv-logo svg { flex-shrink: 0; }

/* Header search bar */
.gv-header-search {
    flex: 1;
    max-width: 300px;
    margin: 0 12px;
}

.gv-header-search-form {
    display: flex;
    align-items: center;
    background: var(--gv-bg-alt);
    border: 1px solid var(--gv-border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.gv-header-search-form:focus-within {
    border-color: var(--gv-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}

.gv-header-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 7px 14px;
    font-size: .85rem;
    font-family: var(--gv-font);
    outline: none;
    min-width: 0;
}

.gv-header-search-form button {
    background: var(--gv-primary);
    border: none;
    color: #fff;
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background .2s;
    border-radius: 0 50px 50px 0;
}

.gv-header-search-form button:hover { background: var(--gv-primary-dark); }

.gv-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.gv-nav a {
    color: var(--gv-text-light);
    font-weight: 500;
    font-size: .95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

.gv-nav a:hover,
.gv-nav .current-menu-item a {
    color: var(--gv-primary);
    border-bottom-color: var(--gv-primary);
}

.gv-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    color: var(--gv-text);
}

/* === HERO === */
.gv-hero {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 50%, #f5f7fa 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.gv-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--gv-text);
}

.gv-hero h1 span { color: var(--gv-primary); }

.gv-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gv-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* === SEARCH FORM === */
.gv-search-box {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.gv-search-box input[type="text"] {
    width: 100%;
    padding: 18px 160px 18px 24px;
    font-size: 1.1rem;
    border: 2px solid var(--gv-border);
    border-radius: 50px;
    outline: none;
    font-family: var(--gv-font);
    transition: border-color .2s, box-shadow .2s;
    background: var(--gv-bg);
}

.gv-search-box input[type="text"]:focus {
    border-color: var(--gv-primary);
    box-shadow: 0 0 0 4px rgba(46,125,50,.12);
}

.gv-search-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 28px;
    background: var(--gv-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--gv-font);
    transition: background .2s;
    display: flex;
    align-items: center;
}

.gv-search-box button:hover { background: var(--gv-primary-dark); }

.gv-search-box button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.gv-search-hint {
    margin-top: 12px;
    font-size: .85rem;
    color: var(--gv-text-light);
}

/* === STATS === */
.gv-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gv-border);
}

.gv-stat { text-align: center; }

.gv-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gv-primary);
    min-width: 80px;
}

.gv-stat-label {
    font-size: .9rem;
    color: var(--gv-text-light);
    margin-top: 4px;
}

/* === SECTIONS === */
.gv-section {
    padding: 80px 0;
}

.gv-section-alt {
    background: var(--gv-bg-alt);
}

.gv-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.gv-section-title h2 {
    margin-bottom: 12px;
}

.gv-section-title p {
    color: var(--gv-text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* === HOW IT WORKS === */
.gv-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gv-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--gv-bg);
    border-radius: var(--gv-radius-lg);
    border: 1px solid var(--gv-border);
    transition: box-shadow .3s;
}

.gv-step:hover { box-shadow: var(--gv-shadow-lg); }

.gv-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.gv-step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background: var(--gv-primary);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.gv-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.gv-step p { color: var(--gv-text-light); font-size: .95rem; margin: 0; }

/* === CARDS === */
.gv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gv-card {
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    overflow: hidden;
    transition: box-shadow .3s, transform .2s;
}

.gv-card:hover {
    box-shadow: var(--gv-shadow-lg);
    transform: translateY(-2px);
}

.gv-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gv-card-body { padding: 24px; }
.gv-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.gv-card-body h3 a { color: var(--gv-text); }
.gv-card-body h3 a:hover { color: var(--gv-primary); }
.gv-card-body p { color: var(--gv-text-light); font-size: .93rem; margin-bottom: 12px; }

.gv-card-meta {
    font-size: .82rem;
    color: var(--gv-text-light);
}

/* === VERIFICATION GRID (latest checks - enhanced) === */
.gv-verif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gv-verif-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    transition: box-shadow .2s, transform .2s;
    color: var(--gv-text);
}

.gv-verif-card:hover {
    box-shadow: var(--gv-shadow-lg);
    transform: translateY(-2px);
    color: var(--gv-text);
}

.gv-verif-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gv-verif-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gv-mini-tag {
    font-size: .72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.gv-mini-tag-ok { background: #e8f5e9; color: var(--gv-primary); }
.gv-mini-tag-bad { background: #fff3e0; color: var(--gv-orange); }

/* Old verif list fallback */
.gv-verif-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gv-verif-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    transition: box-shadow .2s;
}

.gv-verif-item:hover { box-shadow: var(--gv-shadow); }

.gv-verif-score {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.gv-score-green { background: var(--gv-primary); }
.gv-score-orange { background: var(--gv-orange); }
.gv-score-red { background: var(--gv-danger); }

.gv-verif-info { flex: 1; min-width: 0; }
.gv-verif-domain {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gv-verif-date { font-size: .82rem; color: var(--gv-text-light); }

/* === SINGLE VERIFICATION === */
.gv-result {
    padding: 40px 0 60px;
    background: var(--gv-bg-alt);
    min-height: 80vh;
}

/* Breadcrumb */
.gv-breadcrumb {
    font-size: .85rem;
    color: var(--gv-text-light);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gv-breadcrumb a { color: var(--gv-primary); }
.gv-breadcrumb a:hover { text-decoration: underline; }

.gv-result-header {
    text-align: center;
    margin-bottom: 48px;
    background: var(--gv-bg);
    border-radius: var(--gv-radius-lg);
    padding: 48px 24px;
    border: 1px solid var(--gv-border);
    box-shadow: var(--gv-shadow);
}

.gv-result-domain {
    font-size: 1rem;
    color: var(--gv-text-light);
    margin-bottom: 4px;
}

.gv-result-domain-name {
    font-size: 2rem;
    color: var(--gv-text);
    margin-bottom: 24px;
    word-break: break-all;
}

/* Score circle */
.gv-score-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    position: relative;
}

.gv-score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gv-score-circle-bg {
    fill: none;
    stroke: var(--gv-border);
    stroke-width: 10;
}

.gv-score-circle-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.gv-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    font-weight: 800;
}

.gv-score-label {
    font-size: .9rem;
    color: var(--gv-text-light);
}

.gv-result-verdict {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gv-verdict-safe { color: var(--gv-primary); }
.gv-verdict-warning { color: var(--gv-orange); }
.gv-verdict-danger { color: var(--gv-danger); }

/* === BADGES GRID === */
.gv-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gv-badge-card {
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow .2s, transform .2s;
    border-left: 4px solid var(--gv-border);
}

.gv-badge-card:hover {
    box-shadow: var(--gv-shadow);
    transform: translateY(-1px);
}

.gv-badge-card-ok { border-left-color: var(--gv-primary); }
.gv-badge-card-warning { border-left-color: var(--gv-orange); }
.gv-badge-card-danger { border-left-color: var(--gv-danger); }

.gv-badge-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gv-badge-card-ok .gv-badge-card-icon { background: #e8f5e9; color: var(--gv-primary); }
.gv-badge-card-warning .gv-badge-card-icon { background: #fff3e0; color: var(--gv-orange); }
.gv-badge-card-danger .gv-badge-card-icon { background: #ffebee; color: var(--gv-danger); }

.gv-badge-card-content { flex: 1; min-width: 0; }

.gv-badge-card-title {
    font-weight: 700;
    font-size: .9rem;
    color: var(--gv-text);
    margin-bottom: 4px;
}

.gv-badge-card-status {
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.gv-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.gv-dot-green { background: var(--gv-primary); }
.gv-dot-orange { background: var(--gv-orange); }
.gv-dot-red { background: var(--gv-danger); }

.gv-badge-card-desc {
    font-size: .8rem;
    color: var(--gv-text-light);
    line-height: 1.4;
}

/* Detail grid */
.gv-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.gv-detail-card {
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    padding: 28px;
}

.gv-detail-card h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gv-text);
}

.gv-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gv-icon-green { background: #e8f5e9; color: var(--gv-primary); }
.gv-icon-orange { background: #fff3e0; color: var(--gv-orange); }
.gv-icon-red { background: #ffebee; color: var(--gv-danger); }

.gv-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gv-bg-alt);
    font-size: .93rem;
}

.gv-detail-row:last-child { border-bottom: none; }
.gv-detail-label { color: var(--gv-text-light); }
.gv-detail-value { font-weight: 600; }

.gv-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

.gv-badge-green { background: #e8f5e9; color: var(--gv-primary); }
.gv-badge-orange { background: #fff3e0; color: var(--gv-orange); }
.gv-badge-red { background: #ffebee; color: var(--gv-danger); }

/* === NOTRE AVIS === */
.gv-avis-section {
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    padding: 36px;
    margin-bottom: 40px;
    box-shadow: var(--gv-shadow);
}

.gv-avis-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gv-avis-header h3 { margin-bottom: 0; }

.gv-avis-body p { color: var(--gv-text-light); line-height: 1.8; }
.gv-avis-body p:last-child { margin-bottom: 0; }

.gv-avis-verdict {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px !important;
}

.gv-text-green { color: var(--gv-primary) !important; }
.gv-text-orange { color: var(--gv-orange) !important; }
.gv-text-red { color: var(--gv-danger) !important; }

/* === SCORE BREAKDOWN === */
.gv-score-breakdown {
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    padding: 36px;
    margin-bottom: 40px;
}

.gv-score-breakdown h3 { margin-bottom: 24px; }

.gv-breakdown-bars { display: flex; flex-direction: column; gap: 16px; }

.gv-breakdown-item {}

.gv-breakdown-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: .9rem;
}

.gv-breakdown-label span:first-child { font-weight: 600; }

.gv-breakdown-score {
    color: var(--gv-text-light);
    font-weight: 500;
}

.gv-breakdown-bar {
    height: 8px;
    background: var(--gv-bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

.gv-breakdown-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

/* === RESULT ACTIONS === */
.gv-result-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Recommendation (legacy) */
.gv-recommendation {
    background: var(--gv-bg-alt);
    border-radius: var(--gv-radius-lg);
    padding: 32px;
    text-align: center;
}

.gv-recommendation h3 { margin-bottom: 12px; }
.gv-recommendation p { color: var(--gv-text-light); max-width: 600px; margin: 0 auto; }

/* === BTN === */
.gv-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gv-primary);
    color: #fff;
    border: none;
    border-radius: var(--gv-radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    font-family: var(--gv-font);
    transition: background .2s, transform .1s;
    text-align: center;
}

.gv-btn:hover { background: var(--gv-primary-dark); color: #fff; transform: translateY(-1px); }

/* Nav contact button */
.gv-nav-btn {
    display: inline-block !important;
    padding: 9px 32px !important;
    background: var(--gv-primary);
    color: #fff !important;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    border-bottom: none !important;
    transition: background .2s;
    white-space: nowrap;
}

.gv-nav-btn:hover {
    background: var(--gv-primary-dark);
    color: #fff !important;
}

.gv-btn-outline {
    background: transparent;
    color: var(--gv-primary);
    border: 2px solid var(--gv-primary);
}

.gv-btn-outline:hover {
    background: var(--gv-primary);
    color: #fff;
}

/* === BLOG / ARCHIVE === */
.gv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gv-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.gv-pagination a,
.gv-pagination span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--gv-radius);
    font-weight: 500;
    font-size: .9rem;
}

.gv-pagination .current {
    background: var(--gv-primary);
    color: #fff;
}

/* === SINGLE POST === */
.gv-post-single {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

.gv-post-single h1 { font-size: 2.2rem; margin-bottom: 16px; }

.gv-post-meta {
    color: var(--gv-text-light);
    font-size: .9rem;
    margin-bottom: 32px;
}

.gv-post-content { font-size: 1.05rem; line-height: 1.8; }
.gv-post-content h2 { margin-top: 2em; }
.gv-post-content h3 { margin-top: 1.5em; }
.gv-post-content ul, .gv-post-content ol { margin-left: 1.5em; margin-bottom: 1em; }
.gv-post-content blockquote {
    border-left: 4px solid var(--gv-primary);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--gv-bg-alt);
    border-radius: 0 var(--gv-radius) var(--gv-radius) 0;
}

.gv-featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--gv-radius-lg);
    margin-bottom: 32px;
}

/* === PAGE === */
.gv-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

/* === SEARCH === */
.gv-search-results { padding: 48px 0 80px; }
.gv-search-results h1 { margin-bottom: 32px; }

/* === 404 === */
.gv-404 {
    text-align: center;
    padding: 100px 20px;
}

.gv-404 h1 { font-size: 6rem; color: var(--gv-primary); margin-bottom: 0; }
.gv-404 h2 { margin-bottom: 16px; }
.gv-404 p { color: var(--gv-text-light); margin-bottom: 32px; }

/* === FOOTER === */
.gv-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 0 0;
}

.gv-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.gv-footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.gv-footer p { font-size: .9rem; line-height: 1.6; margin-bottom: 0; }

.gv-footer ul { list-style: none; }
.gv-footer li { margin-bottom: 8px; }
.gv-footer a { color: #ccc; font-size: .9rem; }
.gv-footer a:hover { color: var(--gv-primary-light); }

.gv-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    text-align: center;
    font-size: .85rem;
}

/* === LOADING === */
.gv-loading {
    display: none;
    text-align: center;
    padding: 48px;
}

.gv-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gv-border);
    border-top-color: var(--gv-primary);
    border-radius: 50%;
    animation: gv-spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes gv-spin { to { transform: rotate(360deg); } }

.gv-loading-text {
    color: var(--gv-text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.gv-loading-steps {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gv-loading-step {
    font-size: .85rem;
    color: var(--gv-text-light);
    opacity: .3;
    transition: opacity .3s, color .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gv-loading-step.gv-step-active {
    opacity: 1;
    color: var(--gv-primary);
    font-weight: 600;
}

.gv-loading-step.gv-step-done {
    opacity: .6;
    color: var(--gv-primary);
}

.gv-loading-step.gv-step-done::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gv-primary);
    flex-shrink: 0;
}

.gv-loading-step.gv-step-active::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--gv-primary);
    border-top-color: transparent;
    animation: gv-spin .8s linear infinite;
    flex-shrink: 0;
}

/* === AJAX RESULT === */
.gv-ajax-result {
    display: none;
    max-width: 800px;
    margin: 40px auto 0;
}

.gv-inline-result {
    text-align: center;
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
    padding: 40px 24px;
    box-shadow: var(--gv-shadow);
}

.gv-error-box {
    text-align: center;
    padding: 40px;
    background: var(--gv-bg);
    border: 1px solid #ffcdd2;
    border-radius: var(--gv-radius-lg);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .gv-badges-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .gv-steps, .gv-cards, .gv-blog-grid, .gv-details-grid { grid-template-columns: repeat(2, 1fr); }
    .gv-footer-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2rem; }
    .gv-hero h1 { font-size: 2.2rem; }
    .gv-header-search { max-width: 280px; }
}

@media (max-width: 768px) {
    .gv-mobile-toggle { display: block; }
    .gv-header-search { display: none; }

    .gv-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--gv-bg);
        border-bottom: 1px solid var(--gv-border);
        padding: 20px;
        box-shadow: var(--gv-shadow-lg);
    }

    .gv-nav.gv-nav-open { display: block; }

    .gv-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .gv-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--gv-bg-alt);
    }

    .gv-steps, .gv-cards, .gv-blog-grid, .gv-details-grid,
    .gv-badges-grid {
        grid-template-columns: 1fr;
    }

    .gv-stats { flex-wrap: wrap; gap: 20px; }

    .gv-footer-grid { grid-template-columns: 1fr; }

    .gv-hero { padding: 48px 0 40px; }
    .gv-hero h1 { font-size: 1.8rem; }
    .gv-section { padding: 48px 0; }

    .gv-search-box input[type="text"] { padding: 16px 20px; font-size: 1rem; }
    .gv-search-box button {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 14px;
        border-radius: 50px;
        justify-content: center;
    }
    .gv-search-box { display: flex; flex-direction: column; }

    .gv-score-circle { width: 140px; height: 140px; }
    .gv-score-value { font-size: 2.2rem; }

    .gv-result-domain-name { font-size: 1.5rem; }
    .gv-result-header { padding: 32px 16px; }

    .gv-avis-section, .gv-score-breakdown { padding: 24px; }

    .gv-result-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .gv-container { padding: 0 16px; }
    .gv-hero h1 { font-size: 1.5rem; }
    .gv-badges-grid { gap: 12px; }
    .gv-badge-card { padding: 16px; gap: 10px; }
}

/* === FRANCECONNECT === */
.gv-fc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gv-fc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 24px 16px;
    background: var(--gv-bg);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    color: var(--gv-text);
    transition: box-shadow .2s, border-color .2s;
}

.gv-fc-card:hover {
    box-shadow: var(--gv-shadow);
    border-color: var(--gv-primary);
    color: var(--gv-text);
}

.gv-fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e8f5e9;
    color: var(--gv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

h3.gv-fc-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.gv-fc-desc {
    font-size: .8rem;
    color: var(--gv-text-light);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .gv-fc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gv-fc-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gv-fc-card { padding: 16px 12px; }
}

/* === CONTACT FORM === */
.gv-contact-form {
    max-width: 680px;
    margin: 0 auto;
}

.gv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gv-form-group {
    margin-bottom: 20px;
}

.gv-form-group label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--gv-text);
}

.gv-form-group input,
.gv-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    font-family: var(--gv-font);
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.gv-form-group input:focus,
.gv-form-group textarea:focus {
    border-color: var(--gv-primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}

.gv-contact-success {
    text-align: center;
    padding: 48px 24px;
    background: #e8f5e9;
    border-radius: var(--gv-radius-lg);
}

.gv-contact-success h3 { color: var(--gv-primary); margin-top: 16px; }

.gv-contact-error {
    background: #ffebee;
    color: var(--gv-danger);
    padding: 12px 20px;
    border-radius: var(--gv-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.gv-contact-info { margin-top: 48px; }

@media (max-width: 600px) {
    .gv-form-row { grid-template-columns: 1fr; }
}

/* === SITE VERIFIED BADGE WIDGET === */
.gv-badge-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--gv-bg);
    border: 2px solid #c8e6c9;
    border-radius: var(--gv-radius-lg);
    color: var(--gv-text);
    transition: box-shadow .2s, border-color .2s;
    text-decoration: none;
    margin: 24px 0;
    box-shadow: var(--gv-shadow);
}

.gv-badge-widget:hover {
    box-shadow: var(--gv-shadow-lg);
    border-color: var(--gv-primary);
    color: var(--gv-text);
}

.gv-badge-widget-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.gv-badge-widget-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.gv-badge-widget-circle {
    width: 72px;
    height: 72px;
    position: relative;
    flex-shrink: 0;
}

.gv-badge-widget-circle svg {
    width: 100%;
    height: 100%;
}

.gv-badge-widget-score {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 800;
}

.gv-badge-widget-max {
    font-size: .85rem;
    color: var(--gv-text-light);
    font-weight: 500;
}

.gv-badge-widget-label {
    font-size: .8rem;
    color: var(--gv-text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
}

.gv-badge-widget-domain {
    font-size: 1.25rem;
    font-weight: 700;
}

.gv-badge-widget-verdict {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .gv-badge-widget { padding: 18px 16px; }
    .gv-badge-widget-circle { width: 56px; height: 56px; }
    .gv-badge-widget-score { font-size: 1.1rem; }
    .gv-badge-widget-domain { font-size: 1.05rem; }
}

/* === PAGE BUTTONS === */
.gv-page-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}

.gv-page-buttons .gv-btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: .95rem;
}

/* === ACCORDION FAQ === */
.gv-post-content details,
.gv-page details {
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.gv-post-content details summary,
.gv-page details summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: var(--gv-bg-alt);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .2s;
}

.gv-post-content details summary::-webkit-details-marker,
.gv-page details summary::-webkit-details-marker {
    display: none;
}

.gv-post-content details summary::after,
.gv-page details summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gv-text-light);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 12px;
}

.gv-post-content details[open] summary::after,
.gv-page details[open] summary::after {
    content: '\2212';
}

.gv-post-content details[open] summary,
.gv-page details[open] summary {
    border-bottom: 1px solid var(--gv-border);
    background: #e8f5e9;
}

.gv-post-content details > *:not(summary),
.gv-page details > *:not(summary) {
    padding: 0 20px;
}

.gv-post-content details > p:first-of-type,
.gv-page details > p:first-of-type {
    padding-top: 16px;
}

.gv-post-content details > *:last-child,
.gv-page details > *:last-child {
    padding-bottom: 16px;
}

/* === VIDEO SECTION === */
.gv-video-section {
    margin: 40px 0;
    text-align: center;
}

.gv-video-section h2 { margin-bottom: 8px; }
.gv-video-section p { color: var(--gv-text-light); margin-bottom: 24px; }

.gv-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--gv-radius-lg);
    box-shadow: var(--gv-shadow-lg);
}

.gv-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === AUTHOR BOX === */
.gv-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    margin: 48px 0 24px;
    background: var(--gv-bg-alt);
    border: 1px solid var(--gv-border);
    border-radius: var(--gv-radius-lg);
}

.gv-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gv-author-label {
    font-size: .8rem;
    color: var(--gv-text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gv-author-name {
    display: block;
    font-size: 1.1rem;
    margin: 2px 0 6px;
}

.gv-author-bio {
    font-size: .9rem;
    color: var(--gv-text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .gv-author-box { flex-direction: column; text-align: center; }
}
