/* ===== BIG REASONS GRID ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
@media (max-width: 900px) { .reasons-grid { grid-template-columns: 1fr; } }

.reason-card {
    background: var(--ink3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--trans);
    position: relative; overflow: hidden;
}
.reason-card::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.reason-card:hover { border-color: var(--border-gold2); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.reason-card:hover::before { opacity: 1; }
.reason-icon {
    width: 60px; height: 60px; flex-shrink: 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    background: var(--gold-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.reason-content { flex: 1; }
.reason-num {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.reason-title {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 10px; line-height: 1.2;
}
.reason-desc { font-size: 0.88rem; color: var(--ivory-muted); line-height: 1.82; font-weight: 300; }
.reason-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--border-gold2);
    background: var(--gold-glow);
    padding: 5px 12px; border-radius: 20px;
    margin-top: 14px;
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 56px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
}
.compare-table th {
    padding: 20px 24px;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    border-bottom: 1px solid var(--border-gold);
}
.compare-table th:first-child { text-align: left; background: var(--ink3); color: var(--ivory-muted); }
.compare-table th.us { background: linear-gradient(135deg, var(--ink3), var(--ink4)); color: var(--gold-light); }
.compare-table th.other { background: var(--ink2); color: var(--ivory-muted); }

.compare-table td {
    padding: 16px 24px;
    font-size: 0.86rem; font-weight: 300;
    border-bottom: 1px solid var(--border-gold);
    color: var(--ivory-dim);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { background: var(--ink3); font-weight: 500; color: var(--ivory-dim); }
.compare-table td.us { background: rgba(212,113,42,0.04); text-align: center; color: var(--gold-light); font-weight: 600; }
.compare-table td.other { background: var(--ink2); text-align: center; color: var(--ivory-muted); }
.check { color: #4ade80; font-size: 1.1rem; }
.cross { color: #ef4444; font-size: 1.1rem; }
.partial { color: var(--gold-light); font-size: 0.82rem; }

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
}
@media (max-width: 768px) {
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
}
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.process-step-circle {
    width: 72px; height: 72px;
    border: 1px solid var(--border-gold2);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ink3), var(--ink4));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--ink);
    transition: var(--trans);
}
.process-step:hover .process-step-circle { border-color: var(--gold); box-shadow: 0 0 0 6px var(--ink), 0 0 24px var(--gold-glow-hard); }
.process-step-num {
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
}
.process-step-title {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 8px;
}
.process-step-desc { font-size: 0.8rem; color: var(--ivory-muted); line-height: 1.7; font-weight: 300; }

/* ===== GUARANTEE CARDS ===== */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: 1fr; } }

.guarantee-card {
    background: var(--ink3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--trans);
    position: relative; overflow: hidden;
}
.guarantee-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.guarantee-card:hover { border-color: var(--border-gold2); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.guarantee-card:hover::after { opacity: 1; }
.guarantee-badge {
    font-size: 2.4rem; margin-bottom: 16px; display: block;
}
.guarantee-title {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 10px;
}
.guarantee-desc { font-size: 0.86rem; color: var(--ivory-muted); line-height: 1.8; font-weight: 300; }
.guarantee-fine {
    font-size: 0.72rem; color: var(--ivory-muted);
    margin-top: 14px; font-style: italic;
    border-top: 1px solid var(--border-gold);
    padding-top: 12px;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 56px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    background: var(--ink3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-gold2); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
}
.faq-q-text {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500;
    color: var(--ivory); line-height: 1.3;
}
.faq-toggle {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 1px solid var(--border-gold2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold-glow); }
.faq-a {
    display: none;
    padding: 0 26px 22px;
    font-size: 0.88rem; color: var(--ivory-muted);
    line-height: 1.82; font-weight: 300;
}
.faq-item.open .faq-a { display: block; }