/* ─── Page ───────────────────────────────────────────── */
.comp-page {
    font-family: 'Inter', sans-serif;
    background: var(--color-room, #f7f6f3);
    min-height: 100vh;
}

.comp-section {
    padding: 96px 24px 80px;
}

.comp-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────── */
.comp-header {
    margin-bottom: 48px;
    animation: compFadeUp 0.45s ease both;
}

.comp-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ink-tertiary, #aaa);
    margin-bottom: 14px;
}

.comp-title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 14px;
}

.comp-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-ink-secondary, #666);
}

/* ─── Section Title ──────────────────────────────────── */
.comp-section-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 16px;
    animation: compFadeUp 0.45s 0.06s ease both;
}

/* ─── Steps ──────────────────────────────────────────── */
.comp-steps {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 28px;
    animation: compFadeUp 0.45s 0.1s ease both;
}

.comp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e6e1;
    border-radius: 10px;
    padding: 18px 20px;
    transition: box-shadow 0.15s;
}

.comp-step:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comp-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #f4f3f0;
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--color-primary, #0a0a0a);
}

.comp-step-body {
    flex: 1;
    padding-top: 1px;
}

.comp-step-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.comp-step-text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--color-ink-secondary, #777);
}

/* ─── Contact Card ───────────────────────────────────── */
.comp-contact-card {
    background: #fff;
    border: 1px solid #e8e6e1;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 12px;
    animation: compFadeUp 0.45s 0.14s ease both;
}

.comp-contact-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-ink, #0a0a0a);
    margin-bottom: 14px;
}

.comp-contact-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13.5px;
    color: var(--color-ink-secondary, #666);
    line-height: 1.5;
    margin-bottom: 8px;
}

.comp-contact-row:last-child {
    margin-bottom: 0;
}

.comp-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-ink-tertiary, #aaa);
    flex-shrink: 0;
    min-width: 36px;
}

.comp-contact-value {
    color: var(--color-ink-secondary, #666);
}

/* ─── Alert ──────────────────────────────────────────── */
.comp-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 40px;
    animation: compFadeUp 0.45s 0.18s ease both;
}

.comp-alert-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: #d97706;
}

.comp-alert-text {
    font-size: 13px;
    line-height: 1.65;
    color: #92400e;
}

.comp-alert-text strong {
    font-weight: 600;
    color: #78350f;
}

/* ─── Links ──────────────────────────────────────────── */
.comp-link {
    color: var(--color-primary, #0a0a0a);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(10, 10, 10, 0.25);
    transition: text-decoration-color 0.15s;
}

.comp-link:hover {
    text-decoration-color: rgba(10, 10, 10, 0.8);
}

/* ─── Footer ─────────────────────────────────────────── */
.comp-footer {
    padding-top: 24px;
    border-top: 1px solid #ece9e3;
    animation: compFadeUp 0.45s 0.22s ease both;
}

.comp-footer-text {
    font-size: 12px;
    color: var(--color-ink-tertiary, #aaa);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.comp-footer-sep {
    color: #ccc;
}

/* ─── Animation ──────────────────────────────────────── */
@keyframes compFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 480px) {
    .comp-section {
        padding: 64px 16px 60px;
    }

    .comp-step {
        padding: 14px 14px;
        gap: 12px;
    }

    .comp-contact-card {
        padding: 16px;
    }
}