/**
 * DarMatch Guide de l'Hôte page styles
 */

.dmh-guide-page {
    background: #ffffff;
}

/* ===== HERO ===== */
.dmh-guide-hero {
    background: linear-gradient(135deg, #fff8ef 0%, #fef3e2 100%);
    padding: 110px 0 90px;
    text-align: center;
    border-bottom: 1px solid #f3e8d3;
}

.dmh-guide-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.dmh-guide-eyebrow {
    display: inline-block;
    background: rgba(232,147,26,0.12);
    color: #e8931a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dmh-guide-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.dmh-guide-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* ===== INTRO ===== */
.dmh-guide-intro {
    padding: 80px 0 40px;
    background: #ffffff;
}

.dmh-guide-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.dmh-guide-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 18px;
}

.dmh-guide-intro p strong {
    color: #e8931a;
    font-weight: 700;
}

.dmh-guide-intro p em {
    color: #6b7280;
    font-style: italic;
}

/* ===== STEPS ===== */
.dmh-guide-steps {
    padding: 60px 0 100px;
}

.dmh-guide-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #f3f4f6;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.dmh-guide-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.dmh-guide-step-number {
    position: sticky;
    top: 100px;
}

.dmh-guide-step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #e8931a 0%, #d4821a 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 42px;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(232,147,26,0.3);
    letter-spacing: -0.02em;
}

.dmh-guide-step-content {
    min-width: 0;
}

.dmh-guide-step-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #1a1a1a;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Principle box */
.dmh-guide-principle {
    background: #fff8ef;
    border-left: 4px solid #e8931a;
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
}

.dmh-guide-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #e8931a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.dmh-guide-principle p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

/* Block */
.dmh-guide-block {
    margin-bottom: 32px;
}

.dmh-guide-block h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.dmh-guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dmh-guide-list li {
    position: relative;
    padding: 18px 0 18px 36px;
    border-bottom: 1px solid #f3f4f6;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.dmh-guide-list li:last-child {
    border-bottom: none;
}

.dmh-guide-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    width: 22px;
    height: 2px;
    background: #e8931a;
}

.dmh-guide-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.dmh-guide-list li em {
    color: #6b7280;
    font-style: italic;
}

/* Numbered list */
.dmh-guide-list-numbered {
    counter-reset: numlist;
}

.dmh-guide-list-numbered li {
    counter-increment: numlist;
    padding-left: 48px;
}

.dmh-guide-list-numbered li::before {
    content: counter(numlist);
    width: auto;
    height: auto;
    background: transparent;
    top: 18px;
    color: #e8931a;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
}

/* Tip box */
.dmh-guide-tip {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #eef6fc 100%);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 22px 26px;
}

.dmh-guide-tip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #4a90d9;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmh-guide-tip-icon svg {
    width: 22px;
    height: 22px;
}

.dmh-guide-tip > div:last-child {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1e3a5f;
}

.dmh-guide-tip strong {
    color: #1a4775;
    font-weight: 700;
}

/* ===== FINAL CTA ===== */
.dmh-guide-cta {
    padding: 100px 0;
    background-color: #0f0f14;
    background-image:
        radial-gradient(ellipse at top left, rgba(232,147,26,0.12), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(74,144,217,0.08), transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dmh-guide-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.dmh-guide-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin: 0 0 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.dmh-guide-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 36px;
    line-height: 1.65;
}

.dmh-guide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    background: #e8931a;
    color: #ffffff !important;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(232,147,26,0.35);
}

.dmh-guide-cta-btn:hover {
    background: #d68316;
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(232,147,26,0.45);
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .dmh-guide-hero h1 {
        font-size: 48px;
    }
    .dmh-guide-step {
        grid-template-columns: 100px 1fr;
        gap: 32px;
    }
    .dmh-guide-step-number span {
        width: 80px;
        height: 80px;
        font-size: 32px;
        border-radius: 18px;
    }
    .dmh-guide-step-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .dmh-guide-hero {
        padding: 80px 0 60px;
    }
    .dmh-guide-hero h1 {
        font-size: 36px;
    }
    .dmh-guide-subtitle {
        font-size: 17px;
    }
    .dmh-guide-intro {
        padding: 60px 0 30px;
    }
    .dmh-guide-intro p {
        font-size: 17px;
    }
    .dmh-guide-step {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    .dmh-guide-step-number {
        position: relative;
        top: 0;
    }
    .dmh-guide-step-number span {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    .dmh-guide-step-content h2 {
        font-size: 26px;
    }
    .dmh-guide-principle {
        padding: 20px 22px;
    }
    .dmh-guide-block h3 {
        font-size: 18px;
    }
    .dmh-guide-list li {
        font-size: 15px;
        padding-left: 28px;
    }
    .dmh-guide-tip {
        padding: 18px 20px;
    }
    .dmh-guide-tip > div:last-child {
        font-size: 15px;
    }
    .dmh-guide-cta {
        padding: 70px 0;
    }
    .dmh-guide-cta h2 {
        font-size: 32px;
    }
    .dmh-guide-cta p {
        font-size: 16px;
    }
    .dmh-guide-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}
