/* ── SUPPORT SECTION — sup- prefix ── */

#support {
    border-top: 0.5px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: var(--white);
}

/* ── HEADER ── */
.sup-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

.sup-header-left {
    padding: 52px 48px 52px 0;
    border-right: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.sup-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sup-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--green);
    flex-shrink: 0;
}

.sup-h2 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 52px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.sup-header-p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 360px;
    margin: 0;
}

.sup-header-right {
    padding: 52px 0 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.sup-promise-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sup-promise-quote {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.2;
    border-left: 2px solid var(--green);
    padding-left: 20px;
    margin: 0;
}

.sup-promise-quote em {
    font-style: italic;
    color: var(--green);
}

.sup-founder-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}

.sup-founder-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sup-founder-avatar i {
    font-size: 20px;
    color: var(--white);
}

.sup-founder-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.04em;
}

.sup-founder-role {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ── 3 PILLARS ── */
.sup-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

.sup-pillar {
    padding: 40px 36px;
    border-right: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sup-pillar:last-child {
    border-right: none;
}

.sup-pillar-num {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 48px;
    color: var(--light2);
    line-height: 1;
}

.sup-pillar-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.0;
    margin: 0;
}

.sup-pillar-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

.sup-pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border: 0.5px solid var(--light2);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    width: fit-content;
}

/* ── ONBOARDING STEPS — dark ── */
.sup-onboarding {
    background: #111111;
    border-bottom: 0.5px solid var(--border);
}

.sup-onboarding-header {
    padding: 40px 48px 32px;
    border-bottom: 0.5px solid #222222;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.sup-onboarding-headline {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin: 0;
}

.sup-onboarding-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
    line-height: 1.7;
    margin: 0;
}

.sup-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sup-step {
    padding: 32px 36px;
    border-right: 0.5px solid #1e1e1e;
    border-bottom: 0.5px solid #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sup-step:nth-child(3n) {
    border-right: none;
}

.sup-step:nth-last-child(-n+3) {
    border-bottom: none;
}

.sup-step-num {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 28px;
    color: var(--green);
    opacity: 0.6;
    line-height: 1;
}

.sup-step-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.sup-step-body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    margin: 0;
}

.sup-step-time {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}

.sup-step-time i {
    font-size: 12px;
}

/* ── CLOSING — centered finale ── */
.sup-closing {
    padding: 80px 48px 88px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.sup-closing-rule {
    width: 32px;
    height: 2px;
    background: var(--green);
}

.sup-closing-quote {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 56px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.sup-closing-quote em {
    font-style: italic;
    color: var(--green);
}

.sup-closing-p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 420px;
    margin: 0;
}

.sup-cta-btn {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.sup-cta-btn:hover {
    opacity: 0.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .sup-header { grid-template-columns: 1fr; }
    .sup-header-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 40px 24px; }
    .sup-header-right { padding: 40px 24px; }
    .sup-h2 { font-size: 36px; }
    .sup-pillars { grid-template-columns: 1fr; }
    .sup-pillar { border-right: none; border-bottom: 0.5px solid var(--border); }
    .sup-pillar:last-child { border-bottom: none; }
    .sup-onboarding-header { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
    .sup-onboarding-headline { font-size: 26px; }
    .sup-steps { grid-template-columns: 1fr; }
    .sup-step { border-right: none; border-bottom: 0.5px solid #1e1e1e; }
    .sup-step:last-child { border-bottom: none; }
    .sup-step:nth-last-child(-n+3) { border-bottom: 0.5px solid #1e1e1e; }
    .sup-closing { padding: 56px 24px 64px; }
    .sup-closing-quote { font-size: 36px; }
}